2021-06-02 20:51:51 +01:00
|
|
|
using System.Collections.Generic;
|
2023-10-05 01:05:23 +01:00
|
|
|
using System.Diagnostics.CodeAnalysis;
|
2021-06-02 20:51:51 +01:00
|
|
|
using System.IO;
|
|
|
|
|
|
2022-11-15 15:58:43 +00:00
|
|
|
namespace Aaru.Tests.Issues;
|
|
|
|
|
|
2022-03-06 13:29:38 +00:00
|
|
|
/* https://github.com/aaru-dps/Aaru/issues/584
|
|
|
|
|
*
|
|
|
|
|
* robin-francois commented on May 27, 2021
|
|
|
|
|
*
|
|
|
|
|
* When performing file extraction, the following exception is raised
|
|
|
|
|
*/
|
2021-06-02 20:51:51 +01:00
|
|
|
|
2023-10-05 01:05:23 +01:00
|
|
|
[SuppressMessage("ReSharper", "UnusedType.Global")]
|
2022-03-06 13:29:38 +00:00
|
|
|
public class _584 : FsExtractIssueTest
|
|
|
|
|
{
|
2022-11-13 05:48:58 +00:00
|
|
|
public override string DataFolder => Path.Combine(Consts.TestFilesRoot, "Issues", "Fixed", "issue584");
|
2022-03-06 13:29:38 +00:00
|
|
|
public override string TestFile => "001-Disquette_issue_584.img";
|
2022-03-07 07:36:44 +00:00
|
|
|
public override Dictionary<string, string> ParsedOptions => new();
|
2022-03-06 13:29:38 +00:00
|
|
|
public override bool Debug => false;
|
|
|
|
|
public override bool Xattrs => false;
|
|
|
|
|
public override string Encoding => null;
|
|
|
|
|
public override bool ExpectPartitions => false;
|
|
|
|
|
public override string Namespace => null;
|
2021-06-02 20:51:51 +01:00
|
|
|
}
|