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,47 +38,30 @@ namespace DiscImageChef.Tests.Filesystems
|
||||
[TestFixture]
|
||||
public class AFS
|
||||
{
|
||||
readonly string[] testfiles = {
|
||||
"scoopenserver_5.0.7hw_dmf.img.lz", "scoopenserver_5.0.7hw_dshd.img.lz", "scoopenserver_5.0.7hw_mf2dd.img.lz", "scoopenserver_5.0.7hw_mf2ed.img.lz",
|
||||
readonly string[] testfiles =
|
||||
{
|
||||
"scoopenserver_5.0.7hw_dmf.img.lz", "scoopenserver_5.0.7hw_dshd.img.lz",
|
||||
"scoopenserver_5.0.7hw_mf2dd.img.lz", "scoopenserver_5.0.7hw_mf2ed.img.lz",
|
||||
"scoopenserver_5.0.7hw_mf2hd.img.lz",
|
||||
};
|
||||
|
||||
readonly MediaType[] mediatypes = {
|
||||
MediaType.DMF, MediaType.DOS_525_HD, MediaType.DOS_35_DS_DD_9, MediaType.DOS_35_ED,
|
||||
MediaType.DOS_35_HD,
|
||||
};
|
||||
readonly MediaType[] mediatypes =
|
||||
{MediaType.DMF, MediaType.DOS_525_HD, MediaType.DOS_35_DS_DD_9, MediaType.DOS_35_ED, MediaType.DOS_35_HD,};
|
||||
|
||||
readonly ulong[] sectors = {
|
||||
3360, 2400, 1440, 5760,
|
||||
2880,
|
||||
};
|
||||
readonly ulong[] sectors = {3360, 2400, 1440, 5760, 2880,};
|
||||
|
||||
readonly uint[] sectorsize = {
|
||||
512, 512, 512, 512,
|
||||
512,
|
||||
};
|
||||
readonly uint[] sectorsize = {512, 512, 512, 512, 512,};
|
||||
|
||||
readonly long[] clusters = {
|
||||
1680, 1200, 720, 2880,
|
||||
1440,
|
||||
};
|
||||
readonly long[] clusters = {1680, 1200, 720, 2880, 1440,};
|
||||
|
||||
readonly int[] clustersize = {
|
||||
1024, 1024, 1024, 1024,
|
||||
1024,
|
||||
};
|
||||
readonly int[] clustersize = {1024, 1024, 1024, 1024, 1024,};
|
||||
|
||||
readonly string[] volumename = {
|
||||
"", "", "", "",
|
||||
"",
|
||||
};
|
||||
readonly string[] volumename = {"", "", "", "", "",};
|
||||
|
||||
readonly string[] volumeserial = {
|
||||
null, null, null, null,
|
||||
null,
|
||||
};
|
||||
readonly string[] volumeserial = {null, null, null, null, null,};
|
||||
|
||||
readonly string[] type = {
|
||||
readonly string[] type =
|
||||
{
|
||||
"Acer Fast Filesystem", "Acer Fast Filesystem", "Acer Fast Filesystem", "Acer Fast Filesystem",
|
||||
"Acer Fast Filesystem",
|
||||
};
|
||||
@@ -113,4 +96,4 @@ namespace DiscImageChef.Tests.Filesystems
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user