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,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
}
}
}
}
}