mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Convert into primary constructor.
This commit is contained in:
@@ -35,10 +35,8 @@ using NUnit.Framework;
|
||||
namespace Aaru.Tests.Filesystems.UNIXBFS;
|
||||
|
||||
[TestFixture]
|
||||
public class MBR : FilesystemTest
|
||||
public class MBR() : FilesystemTest("bfs")
|
||||
{
|
||||
public MBR() : base("bfs") {}
|
||||
|
||||
public override string DataFolder => Path.Combine(Consts.TestFilesRoot, "Filesystems", "Boot File System (MBR)");
|
||||
public override IFilesystem Plugin => new BFS();
|
||||
public override bool Partitions => true;
|
||||
|
||||
@@ -35,10 +35,8 @@ using NUnit.Framework;
|
||||
namespace Aaru.Tests.Filesystems.UNIXBFS;
|
||||
|
||||
[TestFixture]
|
||||
public class RDB : FilesystemTest
|
||||
public class RDB() : FilesystemTest("ufs")
|
||||
{
|
||||
public RDB() : base("ufs") {}
|
||||
|
||||
public override string DataFolder => Path.Combine(Consts.TestFilesRoot, "Filesystems", "Boot File System (RDB)");
|
||||
public override IFilesystem Plugin => new BFS();
|
||||
public override bool Partitions => true;
|
||||
|
||||
@@ -35,10 +35,8 @@ using NUnit.Framework;
|
||||
namespace Aaru.Tests.Filesystems.UNIXBFS;
|
||||
|
||||
[TestFixture]
|
||||
public class Whole : FilesystemTest
|
||||
public class Whole() : FilesystemTest("bfs")
|
||||
{
|
||||
public Whole() : base("bfs") {}
|
||||
|
||||
public override string DataFolder => Path.Combine(Consts.TestFilesRoot, "Filesystems", "Boot File System");
|
||||
|
||||
public override IFilesystem Plugin => new BFS();
|
||||
|
||||
Reference in New Issue
Block a user