2022-03-07 07:36:44 +00:00
|
|
|
namespace Aaru.Tests.Issues;
|
|
|
|
|
|
2021-06-11 01:31:40 +01:00
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.IO;
|
|
|
|
|
using Aaru.CommonTypes.Interfaces;
|
|
|
|
|
using Aaru.DiscImages;
|
|
|
|
|
|
2022-03-06 13:29:38 +00:00
|
|
|
/* SilasLaspada commented on Nov 16, 2020
|
|
|
|
|
*
|
|
|
|
|
* Error converting NRG version 2 to other formats
|
|
|
|
|
*/
|
2021-06-11 01:31:40 +01:00
|
|
|
|
2022-03-06 13:29:38 +00:00
|
|
|
public class _450 : OpticalImageConvertIssueTest
|
|
|
|
|
{
|
2022-03-07 07:36:44 +00:00
|
|
|
public override Dictionary<string, string> ParsedOptions => new();
|
2022-03-06 13:29:38 +00:00
|
|
|
public override string DataFolder => Path.Combine(Consts.TEST_FILES_ROOT, "Issues", "Fixed", "issue450");
|
|
|
|
|
public override string InputPath => "NRG-Nero_Burning_ROM7.nrg";
|
|
|
|
|
public override string SuggestedOutputFilename => "AaruTestIssue450.aif";
|
|
|
|
|
public override IWritableImage OutputFormat => new AaruFormat();
|
|
|
|
|
public override string Md5 => null;
|
|
|
|
|
public override bool UseLong => true;
|
2021-06-11 01:31:40 +01:00
|
|
|
}
|