2022-03-07 07:36:44 +00:00
|
|
|
namespace Aaru.Tests.Issues;
|
|
|
|
|
|
2021-06-02 21:40:21 +01:00
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.IO;
|
|
|
|
|
|
2022-03-06 13:29:38 +00:00
|
|
|
/* https://github.com/aaru-dps/Aaru/issues/495
|
|
|
|
|
*
|
|
|
|
|
* SilasLaspada commented on Jan 10, 2021
|
|
|
|
|
*
|
|
|
|
|
* Trying to extract files from a CDTV image crashes with "Error reading file: Object reference not set to an instance of an object."
|
|
|
|
|
*/
|
2021-06-02 21:40:21 +01:00
|
|
|
|
2022-03-06 13:29:38 +00:00
|
|
|
public class _495 : FsExtractIssueTest
|
|
|
|
|
{
|
|
|
|
|
public override string DataFolder => Path.Combine(Consts.TEST_FILES_ROOT, "Issues", "Fixed", "issue495");
|
|
|
|
|
public override string TestFile => "NetworkCD.aaruf";
|
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 => true;
|
|
|
|
|
public override string Namespace => null;
|
2021-06-02 21:40:21 +01:00
|
|
|
}
|