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

24 lines
976 B
C#
Raw Normal View History

2022-03-07 07:36:44 +00:00
namespace Aaru.Tests.Issues._288;
2021-03-07 22:14:22 +00:00
using System.Collections.Generic;
using System.IO;
using Aaru.CommonTypes.Interfaces;
using Aaru.DiscImages;
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
public class _18Wheeler : 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 =>
2022-11-13 05:48:58 +00:00
Path.Combine(Consts.TestFilesRoot, "Issues", "Fixed", "issue288", "18wheeler");
2022-03-06 13:29:38 +00:00
public override string InputPath => "18 Wheeler - American Pro Trucker v1.500 (2001)(Sega)(US)[!].gdi";
public override string SuggestedOutputFilename => "AaruTestIssue288_18wheeler.aif";
public override IWritableImage OutputFormat => new AaruFormat();
public override string Md5 => null;
public override bool UseLong => true;
2021-03-07 22:14:22 +00:00
}