Files
Aaru/Aaru.Tests/Issues/288/18Wheeler.cs

25 lines
1021 B
C#
Raw Normal View History

2021-03-07 22:14:22 +00:00
using System.Collections.Generic;
2023-10-05 01:05:23 +01:00
using System.Diagnostics.CodeAnalysis;
2021-03-07 22:14:22 +00:00
using System.IO;
using Aaru.CommonTypes.Interfaces;
using Aaru.Images;
2021-03-07 22:14:22 +00:00
namespace Aaru.Tests.Issues._288;
2022-03-06 13:29:38 +00:00
/* FakeShemp commented on Mar 3, 2020
*
* When trying to convert a GDI Dreamcast image to aaruf, the app crashes.
*/
2021-03-07 22:14:22 +00:00
2022-03-06 13:29:38 +00:00
// 20200309 CLAUNIA: Fixed in af0abca12d429276fc864e1de14a7a40f12bde26
2023-10-05 01:05:23 +01:00
[SuppressMessage("ReSharper", "UnusedType.Global")]
2022-03-06 13:29:38 +00:00
public class _18Wheeler : OpticalImageConvertIssueTest
{
2022-03-07 07:36:44 +00:00
public override Dictionary<string, string> ParsedOptions => new();
public override string DataFolder => Path.Combine(Consts.TestFilesRoot, "Issues", "Fixed", "issue288", "18wheeler");
public override string InputPath => "18 Wheeler - American Pro Trucker v1.500 (2001)(Sega)(US)[!].gdi";
public override string SuggestedOutputFilename => "AaruTestIssue288_18wheeler.aif";
2022-03-06 13:29:38 +00:00
public override IWritableImage OutputFormat => new AaruFormat();
public override string Md5 => null;
public override bool UseLong => true;
2021-03-07 22:14:22 +00:00
}