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

@@ -37,7 +37,7 @@ namespace Aaru.Tests.Filesystems.UNIXBFS;
[TestFixture]
public class MBR : FilesystemTest
{
public MBR() : base("BFS") {}
public MBR() : base("bfs") {}
public override string DataFolder => Path.Combine(Consts.TestFilesRoot, "Filesystems", "Boot File System (MBR)");
public override IFilesystem Plugin => new BFS();

View File

@@ -37,7 +37,7 @@ namespace Aaru.Tests.Filesystems.UNIXBFS;
[TestFixture]
public class RDB : FilesystemTest
{
public RDB() : base("UFS") {}
public RDB() : base("ufs") {}
public override string DataFolder => Path.Combine(Consts.TestFilesRoot, "Filesystems", "Boot File System (RDB)");
public override IFilesystem Plugin => new BFS();

View File

@@ -37,7 +37,7 @@ namespace Aaru.Tests.Filesystems.UNIXBFS;
[TestFixture]
public class Whole : FilesystemTest
{
public Whole() : base("BFS") {}
public Whole() : base("bfs") {}
public override string DataFolder => Path.Combine(Consts.TestFilesRoot, "Filesystems", "Boot File System");