mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
25 lines
947 B
C#
25 lines
947 B
C#
using System.Collections.Generic;
|
|
using System.Diagnostics.CodeAnalysis;
|
|
using System.IO;
|
|
using Aaru.CommonTypes.Interfaces;
|
|
using Aaru.Images;
|
|
|
|
namespace Aaru.Tests.Issues;
|
|
|
|
/* 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.
|
|
*/
|
|
|
|
[SuppressMessage("ReSharper", "UnusedType.Global")]
|
|
public class _299 : OpticalImageConvertIssueTest
|
|
{
|
|
public override Dictionary<string, string> ParsedOptions => new();
|
|
public override string DataFolder => Path.Combine(Consts.TestFilesRoot, "Issues", "Pending", "issue299");
|
|
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;
|
|
} |