2021-03-07 21:25:41 +00:00
|
|
|
using System.Collections.Generic;
|
2023-10-05 01:05:23 +01:00
|
|
|
using System.Diagnostics.CodeAnalysis;
|
2021-03-07 21:25:41 +00:00
|
|
|
using System.IO;
|
|
|
|
|
using Aaru.CommonTypes.Interfaces;
|
2023-10-06 01:16:28 +01:00
|
|
|
using Aaru.Images;
|
2021-03-07 21:25:41 +00:00
|
|
|
|
2022-11-15 15:58:43 +00:00
|
|
|
namespace Aaru.Tests.Issues;
|
|
|
|
|
|
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-03-07 21:25:41 +00:00
|
|
|
|
2022-03-06 13:29:38 +00:00
|
|
|
// 20200309 CLAUNIA: Fixed in 21e81753cd106a52ee599281f0b977cda90484a7
|
|
|
|
|
// 20210307 CLAUNIA: Reopened.
|
2023-10-05 01:05:23 +01:00
|
|
|
[SuppressMessage("ReSharper", "UnusedType.Global")]
|
2022-03-06 13:29:38 +00:00
|
|
|
public class _286 : 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", "Fixed", "issue286");
|
2022-03-06 13:29:38 +00:00
|
|
|
public override string InputPath => "2d_house_of_terror.nrg";
|
|
|
|
|
public override string SuggestedOutputFilename => "AaruTestIssue286.aif";
|
|
|
|
|
public override IWritableImage OutputFormat => new AaruFormat();
|
|
|
|
|
public override string Md5 => null;
|
|
|
|
|
public override bool UseLong => true;
|
2021-03-07 21:25:41 +00:00
|
|
|
}
|