Files
Aaru/Aaru.Tests/Issues/288/ArcadeHits.cs

25 lines
1.0 KiB
C#
Raw Normal View History

2021-03-07 22:14:22 +00:00
using System.Collections.Generic;
using System.IO;
using Aaru.CommonTypes.Interfaces;
using Aaru.DiscImages;
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
public class ArcadeHits : 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", "arcadehits");
2022-03-06 13:29:38 +00:00
public override string InputPath =>
"Midway's Greatest Arcade Hits Volume 1 v1.001 (2000)(Midway)(US)[!][compilation].gdi";
public override string SuggestedOutputFilename => "AaruTestIssue288_arcadehits.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
}