Fix naming style.

This commit is contained in:
2022-03-15 01:37:37 +00:00
parent 265fa4fc17
commit d4b1e63e96
163 changed files with 3422 additions and 3306 deletions

View File

@@ -7,7 +7,7 @@ using NUnit.Framework;
[TestFixture]
public class ExtendedCSD
{
readonly byte[][] ecsd =
readonly byte[][] _ecsd =
{
new byte[]
{
@@ -43,7 +43,7 @@ public class ExtendedCSD
}
};
readonly Aaru.Decoders.MMC.ExtendedCSD[] decoded =
readonly Aaru.Decoders.MMC.ExtendedCSD[] _decoded =
{
new()
{
@@ -212,11 +212,11 @@ public class ExtendedCSD
[Test]
public void Test()
{
for(var i = 0; i < ecsd.Length; i++)
for(var i = 0; i < _ecsd.Length; i++)
{
Aaru.Decoders.MMC.ExtendedCSD csd = Decoders.DecodeExtendedCSD(ecsd[i]);
Aaru.Decoders.MMC.ExtendedCSD csd = Decoders.DecodeExtendedCSD(_ecsd[i]);
Assert.IsNotNull(csd, $"Not decoded - {i}");
csd.Should().BeEquivalentTo(decoded[i]);
csd.Should().BeEquivalentTo(_decoded[i]);
}
}
}