mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Implement ReadOnlyFilesystemTest in FAT tests.
This commit is contained in:
@@ -35,7 +35,7 @@ using NUnit.Framework;
|
||||
namespace Aaru.Tests.Filesystems.FAT12
|
||||
{
|
||||
[TestFixture]
|
||||
public class APM : FilesystemTest
|
||||
public class APM : ReadOnlyFilesystemTest
|
||||
{
|
||||
public APM() : base("FAT12") {}
|
||||
|
||||
|
||||
@@ -35,7 +35,7 @@ using NUnit.Framework;
|
||||
namespace Aaru.Tests.Filesystems.FAT12
|
||||
{
|
||||
[TestFixture]
|
||||
public class GPT : FilesystemTest
|
||||
public class GPT : ReadOnlyFilesystemTest
|
||||
{
|
||||
public GPT() : base("FAT12") {}
|
||||
|
||||
|
||||
@@ -35,7 +35,7 @@ using NUnit.Framework;
|
||||
namespace Aaru.Tests.Filesystems.FAT12
|
||||
{
|
||||
[TestFixture]
|
||||
public class Human : FilesystemTest
|
||||
public class Human : ReadOnlyFilesystemTest
|
||||
{
|
||||
public Human() : base("FAT12") {}
|
||||
|
||||
|
||||
@@ -35,7 +35,7 @@ using NUnit.Framework;
|
||||
namespace Aaru.Tests.Filesystems.FAT12
|
||||
{
|
||||
[TestFixture]
|
||||
public class MBR : FilesystemTest
|
||||
public class MBR : ReadOnlyFilesystemTest
|
||||
{
|
||||
public MBR() : base("FAT12") {}
|
||||
|
||||
|
||||
@@ -35,7 +35,7 @@ using NUnit.Framework;
|
||||
namespace Aaru.Tests.Filesystems.FAT12
|
||||
{
|
||||
[TestFixture]
|
||||
public class Whole : FilesystemTest
|
||||
public class Whole : ReadOnlyFilesystemTest
|
||||
{
|
||||
public Whole() : base("FAT12") {}
|
||||
|
||||
|
||||
@@ -35,7 +35,7 @@ using NUnit.Framework;
|
||||
namespace Aaru.Tests.Filesystems.FAT16
|
||||
{
|
||||
[TestFixture]
|
||||
public class APM : FilesystemTest
|
||||
public class APM : ReadOnlyFilesystemTest
|
||||
{
|
||||
public APM() : base("FAT16") {}
|
||||
|
||||
|
||||
@@ -35,7 +35,7 @@ using NUnit.Framework;
|
||||
namespace Aaru.Tests.Filesystems.FAT16
|
||||
{
|
||||
[TestFixture]
|
||||
public class Atari : FilesystemTest
|
||||
public class Atari : ReadOnlyFilesystemTest
|
||||
{
|
||||
public Atari() : base("FAT16") {}
|
||||
|
||||
|
||||
@@ -35,7 +35,7 @@ using NUnit.Framework;
|
||||
namespace Aaru.Tests.Filesystems.FAT16
|
||||
{
|
||||
[TestFixture]
|
||||
public class GPT : FilesystemTest
|
||||
public class GPT : ReadOnlyFilesystemTest
|
||||
{
|
||||
public GPT() : base("FAT16") {}
|
||||
|
||||
|
||||
@@ -35,7 +35,7 @@ using NUnit.Framework;
|
||||
namespace Aaru.Tests.Filesystems.FAT16
|
||||
{
|
||||
[TestFixture]
|
||||
public class Human : FilesystemTest
|
||||
public class Human : ReadOnlyFilesystemTest
|
||||
{
|
||||
public Human() : base("FAT16") {}
|
||||
|
||||
|
||||
@@ -35,7 +35,7 @@ using NUnit.Framework;
|
||||
namespace Aaru.Tests.Filesystems.FAT16
|
||||
{
|
||||
[TestFixture]
|
||||
public class MBR : FilesystemTest
|
||||
public class MBR : ReadOnlyFilesystemTest
|
||||
{
|
||||
public MBR() : base("FAT16") {}
|
||||
|
||||
|
||||
@@ -35,7 +35,7 @@ using NUnit.Framework;
|
||||
namespace Aaru.Tests.Filesystems.FAT16
|
||||
{
|
||||
[TestFixture]
|
||||
public class RDB : FilesystemTest
|
||||
public class RDB : ReadOnlyFilesystemTest
|
||||
{
|
||||
public RDB() : base("FAT16") {}
|
||||
|
||||
|
||||
@@ -35,7 +35,7 @@ using NUnit.Framework;
|
||||
namespace Aaru.Tests.Filesystems.FAT16
|
||||
{
|
||||
[TestFixture]
|
||||
public class Whole : FilesystemTest
|
||||
public class Whole : ReadOnlyFilesystemTest
|
||||
{
|
||||
public Whole() : base("FAT16") {}
|
||||
|
||||
|
||||
@@ -35,7 +35,7 @@ using NUnit.Framework;
|
||||
namespace Aaru.Tests.Filesystems.FAT32
|
||||
{
|
||||
[TestFixture]
|
||||
public class APM : FilesystemTest
|
||||
public class APM : ReadOnlyFilesystemTest
|
||||
{
|
||||
public APM() : base("FAT32") {}
|
||||
|
||||
|
||||
@@ -35,7 +35,7 @@ using NUnit.Framework;
|
||||
namespace Aaru.Tests.Filesystems.FAT32
|
||||
{
|
||||
[TestFixture]
|
||||
public class GPT : FilesystemTest
|
||||
public class GPT : ReadOnlyFilesystemTest
|
||||
{
|
||||
public GPT() : base("FAT32") {}
|
||||
|
||||
|
||||
@@ -35,7 +35,7 @@ using NUnit.Framework;
|
||||
namespace Aaru.Tests.Filesystems.FAT32
|
||||
{
|
||||
[TestFixture]
|
||||
public class MBR : FilesystemTest
|
||||
public class MBR : ReadOnlyFilesystemTest
|
||||
{
|
||||
public MBR() : base("FAT32") {}
|
||||
|
||||
|
||||
@@ -35,7 +35,7 @@ using NUnit.Framework;
|
||||
namespace Aaru.Tests.Filesystems.FAT32
|
||||
{
|
||||
[TestFixture]
|
||||
public class Whole : FilesystemTest
|
||||
public class Whole : ReadOnlyFilesystemTest
|
||||
{
|
||||
public Whole() : base("FAT32") {}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user