mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
27 lines
1.1 KiB
C#
27 lines
1.1 KiB
C#
using System.Collections.Generic;
|
|
using System.IO;
|
|
|
|
// ReSharper disable StringLiteralTypo
|
|
|
|
namespace Aaru.Tests.Issues._542
|
|
{
|
|
/* 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.
|
|
*/
|
|
|
|
public class Sims : FsExtractHashIssueTest
|
|
{
|
|
protected override string DataFolder =>
|
|
Path.Combine(Consts.TEST_FILES_ROOT, "Issues", "Fixed", "issue542", "sims");
|
|
protected override string TestFile => "The Sims.aaruf";
|
|
protected override Dictionary<string, string> ParsedOptions => new Dictionary<string, string>();
|
|
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;
|
|
}
|
|
} |