mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
25 lines
1.1 KiB
C#
25 lines
1.1 KiB
C#
|
|
using System.Collections.Generic;
|
||
|
|
using System.IO;
|
||
|
|
using Aaru.CommonTypes.Interfaces;
|
||
|
|
using Aaru.DiscImages;
|
||
|
|
|
||
|
|
namespace Aaru.Tests.Issues._288
|
||
|
|
{
|
||
|
|
/* FakeShemp commented on Mar 3, 2020
|
||
|
|
*
|
||
|
|
* When trying to convert a GDI Dreamcast image to aaruf, the app crashes.
|
||
|
|
*/
|
||
|
|
|
||
|
|
// 20200309 CLAUNIA: Fixed in af0abca12d429276fc864e1de14a7a40f12bde26
|
||
|
|
public class Roadsters : OpticalImageConvertIssueTest
|
||
|
|
{
|
||
|
|
public override Dictionary<string, string> ParsedOptions => new Dictionary<string, string>();
|
||
|
|
public override string DataFolder =>
|
||
|
|
Path.Combine(Consts.TEST_FILES_ROOT, "Issues", "Fixed", "issue288", "roadsters");
|
||
|
|
public override string InputPath => "Roadsters (USA).cue";
|
||
|
|
public override string SuggestedOutputFilename => "AaruTestIssue288_roadsters.aif";
|
||
|
|
public override IWritableImage OutputFormat => new AaruFormat();
|
||
|
|
public override string Md5 => null;
|
||
|
|
public override bool UseLong => true;
|
||
|
|
}
|
||
|
|
}
|