mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
REFACTOR: Reformat code.
This commit is contained in:
@@ -38,41 +38,23 @@ namespace DiscImageChef.Tests.Filesystems
|
||||
[TestFixture]
|
||||
public class Locus
|
||||
{
|
||||
readonly string[] testfiles = {
|
||||
"mf2dd.img.lz", "mf2hd.img.lz",
|
||||
};
|
||||
readonly string[] testfiles = {"mf2dd.img.lz", "mf2hd.img.lz",};
|
||||
|
||||
readonly MediaType[] mediatypes = {
|
||||
MediaType.DOS_35_DS_DD_9, MediaType.DOS_35_HD,
|
||||
};
|
||||
readonly MediaType[] mediatypes = {MediaType.DOS_35_DS_DD_9, MediaType.DOS_35_HD,};
|
||||
|
||||
readonly ulong[] sectors = {
|
||||
1440, 2880,
|
||||
};
|
||||
readonly ulong[] sectors = {1440, 2880,};
|
||||
|
||||
readonly uint[] sectorsize = {
|
||||
512, 512,
|
||||
};
|
||||
readonly uint[] sectorsize = {512, 512,};
|
||||
|
||||
readonly long[] clusters = {
|
||||
180, 360,
|
||||
};
|
||||
readonly long[] clusters = {180, 360,};
|
||||
|
||||
readonly int[] clustersize = {
|
||||
4096, 4096,
|
||||
};
|
||||
readonly int[] clustersize = {4096, 4096,};
|
||||
|
||||
readonly string[] volumename = {
|
||||
"Label", "Label",
|
||||
};
|
||||
readonly string[] volumename = {"Label", "Label",};
|
||||
|
||||
readonly string[] volumeserial = {
|
||||
null, null,
|
||||
};
|
||||
readonly string[] volumeserial = {null, null,};
|
||||
|
||||
readonly string[] oemid = {
|
||||
null, null,
|
||||
};
|
||||
readonly string[] oemid = {null, null,};
|
||||
|
||||
[Test]
|
||||
public void Test()
|
||||
@@ -105,4 +87,4 @@ namespace DiscImageChef.Tests.Filesystems
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user