Files
Aaru/Aaru.Tests/Issues/379.cs

29 lines
1.1 KiB
C#
Raw Normal View History

2021-03-08 03:13:44 +00:00
using System.Collections.Generic;
2023-10-05 01:05:23 +01:00
using System.Diagnostics.CodeAnalysis;
2021-03-08 03:13:44 +00:00
using System.IO;
using Aaru.CommonTypes.Interfaces;
using Aaru.Images;
2021-03-08 03:13:44 +00:00
namespace Aaru.Tests.Issues;
2022-03-06 13:29:38 +00:00
/* https://github.com/aaru-dps/Aaru/issues/379
*
* SilasLaspada commented on Jul 24, 2020
*
* Converting a B6T image from BlindWrite 6 to aaruf crashes Aaru with
* "Unhandled exception: System.Reflection.TargetInvocationException: Exception has been thrown by the target of
* an invocation."
*/
2021-03-08 03:13:44 +00:00
2022-03-06 13:29:38 +00:00
// 20201103 CLAUNIA: Fixed in 532b2adddc900d8e4c61a6399d4da20a566d4876
2023-10-05 01:05:23 +01:00
[SuppressMessage("ReSharper", "UnusedType.Global")]
2022-03-06 13:29:38 +00:00
public class _379 : 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", "issue379");
2022-03-06 13:29:38 +00:00
public override string InputPath => "Sony USB Driver.B6T";
public override string SuggestedOutputFilename => "AaruIssue379Output.aif";
public override IWritableImage OutputFormat => new AaruFormat();
public override string Md5 => null;
public override bool UseLong => false;
2021-03-08 03:13:44 +00:00
}