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

30 lines
1.1 KiB
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 ArcadeHits : OpticalImageConvertIssueTest
{
2022-03-07 07:36:44 +00:00
public override Dictionary<string, string> ParsedOptions => new();
2023-10-03 23:44:33 +01:00
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");
2023-10-03 23:44:33 +01:00
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";
2023-10-03 23:44:33 +01:00
2022-03-06 13:29:38 +00:00
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
}