Files
Aaru/Aaru.Tests/Issues/299.cs

23 lines
860 B
C#
Raw Normal View History

2022-03-07 07:36:44 +00:00
namespace Aaru.Tests.Issues;
2021-06-11 01:29:00 +01: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 1, 2020
*
* Neither of the Dreamcast homebrew images found on
* http://dcevolution.sourceforge.net/index.php?id=house_of_terror can be converted to DICF.
*/
2021-06-11 01:29:00 +01:00
2022-03-06 13:29:38 +00:00
public class _299 : OpticalImageConvertIssueTest
{
2022-03-07 07:36:44 +00:00
public override Dictionary<string, string> ParsedOptions => new();
2022-11-13 05:48:58 +00:00
public override string DataFolder => Path.Combine(Consts.TestFilesRoot, "Issues", "Pending", "issue299");
2022-03-06 13:29:38 +00:00
public override string InputPath => "2d_house_of_terror.cdi";
public override string SuggestedOutputFilename => "AaruTestIssue299.aif";
public override IWritableImage OutputFormat => new AaruFormat();
public override string Md5 => null;
public override bool UseLong => true;
2021-06-11 01:29:00 +01:00
}