Implement ReadOnlyFilesystemTest in FAT tests.

This commit is contained in:
2021-06-01 22:51:36 +01:00
parent d53ed217d2
commit e3ef18ac62
16 changed files with 16 additions and 16 deletions

View File

@@ -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") {}

View File

@@ -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") {}

View File

@@ -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") {}

View File

@@ -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") {}

View File

@@ -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") {}

View File

@@ -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") {}

View File

@@ -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") {}

View File

@@ -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") {}

View File

@@ -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") {}

View File

@@ -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") {}

View File

@@ -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") {}

View File

@@ -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") {}

View File

@@ -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") {}

View File

@@ -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") {}

View File

@@ -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") {}

View File

@@ -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") {}