REFACTOR: Reformat code.

This commit is contained in:
2017-12-19 20:33:03 +00:00
parent 77edc7c91c
commit e6f6ace80b
704 changed files with 82627 additions and 83641 deletions

View File

@@ -38,37 +38,21 @@ namespace DiscImageChef.Tests.Filesystems
[TestFixture]
public class AFFS
{
readonly string[] testfiles = {
"amigaos_3.9.adf.lz", "amigaos_3.9_intl.adf.lz",
};
readonly string[] testfiles = {"amigaos_3.9.adf.lz", "amigaos_3.9_intl.adf.lz",};
readonly MediaType[] mediatypes = {
MediaType.CBM_AMIGA_35_DD, MediaType.CBM_AMIGA_35_DD,
};
readonly MediaType[] mediatypes = {MediaType.CBM_AMIGA_35_DD, MediaType.CBM_AMIGA_35_DD,};
readonly ulong[] sectors = {
1760, 1760,
};
readonly ulong[] sectors = {1760, 1760,};
readonly uint[] sectorsize = {
512, 512,
};
readonly uint[] sectorsize = {512, 512,};
readonly long[] clusters = {
1760, 1760,
};
readonly long[] clusters = {1760, 1760,};
readonly int[] clustersize = {
512, 512,
};
readonly int[] clustersize = {512, 512,};
readonly string[] volumename = {
"Volume label", "Volume label",
};
readonly string[] volumename = {"Volume label", "Volume label",};
readonly string[] volumeserial = {
"A5D9FAE2", "A5DA0CC9",
};
readonly string[] volumeserial = {"A5D9FAE2", "A5DA0CC9",};
[Test]
public void Test()
@@ -100,4 +84,4 @@ namespace DiscImageChef.Tests.Filesystems
}
}
}
}
}