mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Add unit test for issue 286.
This commit is contained in:
26
Aaru.Tests/Issues/286.cs
Normal file
26
Aaru.Tests/Issues/286.cs
Normal file
@@ -0,0 +1,26 @@
|
||||
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.
|
||||
*/
|
||||
|
||||
// 20200309 CLAUNIA: Fixed in 21e81753cd106a52ee599281f0b977cda90484a7
|
||||
// 20210307 CLAUNIA: Reopened.
|
||||
public class _286 : OpticalImageConvertIssueTest
|
||||
{
|
||||
public override Dictionary<string, string> ParsedOptions => new Dictionary<string, string>();
|
||||
public override string DataFolder => Path.Combine(Consts.TEST_FILES_ROOT, "Issues", "Pending", "issue286");
|
||||
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 => "";
|
||||
public override bool UseLong => true;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user