Files
Aaru/Aaru.Tests/Issues/542/SimsEP.cs

27 lines
956 B
C#
Raw Normal View History

2021-03-08 05:28:22 +00:00
// ReSharper disable StringLiteralTypo
2022-03-07 07:36:44 +00:00
using System.Collections.Generic;
2022-03-15 01:37:37 +00:00
using System.Diagnostics.CodeAnalysis;
2022-03-07 07:36:44 +00:00
using System.IO;
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-15 01:37:37 +00:00
[SuppressMessage("ReSharper", "InconsistentNaming")]
2022-03-06 13:29:38 +00:00
public class SimsEP : FsExtractHashIssueTest
{
2022-11-13 05:48:58 +00:00
protected override string DataFolder => Path.Combine(Consts.TestFilesRoot, "Issues", "Fixed", "issue542", "exp");
2022-03-07 07:36:44 +00:00
protected override string TestFile => "THE_SIMS_EP.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
}