From a80b0ddf463daf09b77c7db519e08c6272dacf09 Mon Sep 17 00:00:00 2001 From: Natalia Portillo Date: Fri, 11 Jun 2021 01:29:00 +0100 Subject: [PATCH] Add unit test for #299 --- Aaru.Tests/Issues/299.cs | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 Aaru.Tests/Issues/299.cs diff --git a/Aaru.Tests/Issues/299.cs b/Aaru.Tests/Issues/299.cs new file mode 100644 index 000000000..32de6b575 --- /dev/null +++ b/Aaru.Tests/Issues/299.cs @@ -0,0 +1,24 @@ +using System.Collections.Generic; +using System.IO; +using Aaru.CommonTypes.Interfaces; +using Aaru.DiscImages; + +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. + */ + + public class _299 : OpticalImageConvertIssueTest + { + public override Dictionary ParsedOptions => new Dictionary(); + public override string DataFolder => Path.Combine(Consts.TEST_FILES_ROOT, "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; + } +} \ No newline at end of file