mirror of
https://github.com/aaru-dps/Aaru.Server.git
synced 2025-12-16 19:24:27 +00:00
REFACTOR: Reformat code.
This commit is contained in:
@@ -38,45 +38,33 @@ namespace DiscImageChef.Tests.Filesystems
|
||||
[TestFixture]
|
||||
public class ADFS
|
||||
{
|
||||
readonly string[] testfiles = {
|
||||
"adfs_d.adf.lz",
|
||||
"adfs_e.adf.lz",
|
||||
"adfs_f.adf.lz",
|
||||
"adfs_e+.adf.lz",
|
||||
"adfs_f+.adf.lz",
|
||||
"adfs_s.adf.lz",
|
||||
"adfs_m.adf.lz",
|
||||
"adfs_l.adf.lz",
|
||||
"hdd_old.hdf.lz",
|
||||
"hdd_new.hdf.lz",
|
||||
readonly string[] testfiles =
|
||||
{
|
||||
"adfs_d.adf.lz", "adfs_e.adf.lz", "adfs_f.adf.lz", "adfs_e+.adf.lz", "adfs_f+.adf.lz", "adfs_s.adf.lz",
|
||||
"adfs_m.adf.lz", "adfs_l.adf.lz", "hdd_old.hdf.lz", "hdd_new.hdf.lz",
|
||||
};
|
||||
|
||||
readonly MediaType[] mediatypes = {
|
||||
MediaType.ACORN_35_DS_DD,
|
||||
MediaType.ACORN_35_DS_DD,
|
||||
MediaType.ACORN_35_DS_HD,
|
||||
MediaType.ACORN_35_DS_DD,
|
||||
MediaType.ACORN_35_DS_HD,
|
||||
MediaType.ACORN_525_SS_DD_40,
|
||||
MediaType.ACORN_525_SS_DD_80,
|
||||
MediaType.ACORN_525_DS_DD,
|
||||
MediaType.GENERIC_HDD,
|
||||
MediaType.GENERIC_HDD,
|
||||
readonly MediaType[] mediatypes =
|
||||
{
|
||||
MediaType.ACORN_35_DS_DD, MediaType.ACORN_35_DS_DD, MediaType.ACORN_35_DS_HD, MediaType.ACORN_35_DS_DD,
|
||||
MediaType.ACORN_35_DS_HD, MediaType.ACORN_525_SS_DD_40, MediaType.ACORN_525_SS_DD_80,
|
||||
MediaType.ACORN_525_DS_DD, MediaType.GENERIC_HDD, MediaType.GENERIC_HDD,
|
||||
};
|
||||
|
||||
readonly ulong[] sectors = { 800, 800, 1600, 800, 1600, 640, 1280, 2560, 78336, 78336 };
|
||||
readonly ulong[] sectors = {800, 800, 1600, 800, 1600, 640, 1280, 2560, 78336, 78336};
|
||||
|
||||
readonly uint[] sectorsize = { 1024, 1024, 1024, 1024, 1024, 256, 256, 256, 256, 256 };
|
||||
readonly uint[] sectorsize = {1024, 1024, 1024, 1024, 1024, 256, 256, 256, 256, 256};
|
||||
|
||||
readonly bool[] bootable = { false, false, false, false, false, false, false, false, false, false };
|
||||
readonly bool[] bootable = {false, false, false, false, false, false, false, false, false, false};
|
||||
|
||||
readonly long[] clusters = { 800, 800, 1600, 800, 1600, 640, 1280, 2560, 78336, 78336 };
|
||||
readonly long[] clusters = {800, 800, 1600, 800, 1600, 640, 1280, 2560, 78336, 78336};
|
||||
|
||||
readonly uint[] clustersize = { 1024, 1024, 1024, 1024, 1024, 256, 256, 256, 256, 256 };
|
||||
readonly uint[] clustersize = {1024, 1024, 1024, 1024, 1024, 256, 256, 256, 256, 256};
|
||||
|
||||
readonly string[] volumename = { "ADFSD", "ADFSE ", null, "ADFSE+ ", null, "$", "$", "$", "VolLablOld", null };
|
||||
readonly string[] volumename =
|
||||
{"ADFSD", "ADFSE ", null, "ADFSE+ ", null, "$", "$", "$", "VolLablOld", null};
|
||||
|
||||
readonly string[] volumeserial = { "3E48", "E13A", null, "1142", null, "F20D", "D6CA", "0CA6", "080E", null };
|
||||
readonly string[] volumeserial = {"3E48", "E13A", null, "1142", null, "F20D", "D6CA", "0CA6", "080E", null};
|
||||
|
||||
[Test]
|
||||
public void Test()
|
||||
@@ -109,4 +97,4 @@ namespace DiscImageChef.Tests.Filesystems
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user