mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
24 lines
857 B
C#
24 lines
857 B
C#
using System.Collections.Generic;
|
|
using System.Diagnostics.CodeAnalysis;
|
|
using System.IO;
|
|
using Aaru.CommonTypes.Interfaces;
|
|
using Aaru.Images;
|
|
|
|
namespace Aaru.Tests.Issues;
|
|
|
|
/* SilasLaspada commented on Nov 16, 2020
|
|
*
|
|
* Error converting NRG version 2 to other formats
|
|
*/
|
|
|
|
[SuppressMessage("ReSharper", "UnusedType.Global")]
|
|
public class _450 : OpticalImageConvertIssueTest
|
|
{
|
|
public override Dictionary<string, string> ParsedOptions => new();
|
|
public override string DataFolder => Path.Combine(Consts.TestFilesRoot, "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;
|
|
} |