Update tests with new filesystem types.

This commit is contained in:
2022-12-07 22:00:19 +00:00
parent c5d5c0b09a
commit f39d587bd5
143 changed files with 446 additions and 449 deletions

View File

@@ -36,7 +36,7 @@ namespace Aaru.Tests.Filesystems.SFS;
[TestFixture]
public class APM : FilesystemTest
{
public APM() : base("SmartFileSystem") {}
public APM() : base("sfs") {}
public override string DataFolder => Path.Combine(Consts.TestFilesRoot, "Filesystems", "Smart File System (APM)");

View File

@@ -37,7 +37,7 @@ namespace Aaru.Tests.Filesystems.SFS;
[TestFixture, SuppressMessage("ReSharper", "InconsistentNaming")]
public class MBR_RDB : FilesystemTest
{
public MBR_RDB() : base("SmartFileSystem") {}
public MBR_RDB() : base("sfs") {}
public override string DataFolder =>
Path.Combine(Consts.TestFilesRoot, "Filesystems", "Smart File System (MBR+RDB)");

View File

@@ -36,7 +36,7 @@ namespace Aaru.Tests.Filesystems.SFS;
[TestFixture]
public class MBR : FilesystemTest
{
public MBR() : base("SmartFileSystem") {}
public MBR() : base("sfs") {}
public override string DataFolder => Path.Combine(Consts.TestFilesRoot, "Filesystems", "Smart File System (MBR)");
public override IFilesystem Plugin => new Aaru.Filesystems.SFS();

View File

@@ -36,7 +36,7 @@ namespace Aaru.Tests.Filesystems.SFS;
[TestFixture]
public class RDB : FilesystemTest
{
public RDB() : base("SmartFileSystem") {}
public RDB() : base("sfs") {}
public override string DataFolder => Path.Combine(Consts.TestFilesRoot, "Filesystems", "Smart File System (RDB)");