2021-03-08 05:28:22 +00:00
|
|
|
// ReSharper disable StringLiteralTypo
|
|
|
|
|
|
2022-03-07 07:36:44 +00:00
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.IO;
|
|
|
|
|
|
2022-11-15 15:58:43 +00:00
|
|
|
namespace Aaru.Tests.Issues._542;
|
|
|
|
|
|
2022-03-06 13:29:38 +00:00
|
|
|
/* https://github.com/aaru-dps/Aaru/issues/542
|
|
|
|
|
*
|
|
|
|
|
* SilasLaspada commented on Feb 10, 2021
|
|
|
|
|
*
|
|
|
|
|
* When extracting an image of a SafeDisc protected CD, most files aren't properly extracted.
|
|
|
|
|
*/
|
2021-03-08 05:28:22 +00:00
|
|
|
|
2022-03-06 13:29:38 +00:00
|
|
|
public class Sims : FsExtractHashIssueTest
|
|
|
|
|
{
|
2022-11-13 05:48:58 +00:00
|
|
|
protected override string DataFolder => Path.Combine(Consts.TestFilesRoot, "Issues", "Fixed", "issue542", "sims");
|
2022-03-07 07:36:44 +00:00
|
|
|
protected override string TestFile => "The Sims.aaruf";
|
|
|
|
|
protected override Dictionary<string, string> ParsedOptions => new();
|
|
|
|
|
protected override bool Debug => false;
|
|
|
|
|
protected override bool Xattrs => false;
|
|
|
|
|
protected override string Encoding => null;
|
|
|
|
|
protected override bool ExpectPartitions => true;
|
|
|
|
|
protected override string Namespace => null;
|
2021-03-08 05:28:22 +00:00
|
|
|
}
|