Test methods don't need to be public.

This commit is contained in:
2017-09-08 18:21:52 +01:00
parent 849a6f2847
commit b92d64beb1
7 changed files with 34 additions and 34 deletions

View File

@@ -102,7 +102,7 @@ namespace DiscImageChef.Tests.Devices.ATA
}
}
public static void GetNativeMaxAddressExt(string devPath, Device dev)
static void GetNativeMaxAddressExt(string devPath, Device dev)
{
start:
System.Console.Clear();
@@ -155,7 +155,7 @@ namespace DiscImageChef.Tests.Devices.ATA
}
}
public static void ReadDmaExt(string devPath, Device dev)
static void ReadDmaExt(string devPath, Device dev)
{
ulong lba = 0;
ushort count = 1;
@@ -298,7 +298,7 @@ namespace DiscImageChef.Tests.Devices.ATA
}
}
public static void ReadLogExt(string devPath, Device dev)
static void ReadLogExt(string devPath, Device dev)
{
byte address = 0;
ushort page = 0;
@@ -447,7 +447,7 @@ namespace DiscImageChef.Tests.Devices.ATA
}
}
public static void ReadLogDmaExt(string devPath, Device dev)
static void ReadLogDmaExt(string devPath, Device dev)
{
byte address = 0;
ushort page = 0;
@@ -596,7 +596,7 @@ namespace DiscImageChef.Tests.Devices.ATA
}
}
public static void ReadMultipleExt(string devPath, Device dev)
static void ReadMultipleExt(string devPath, Device dev)
{
ulong lba = 0;
ushort count = 1;
@@ -739,7 +739,7 @@ namespace DiscImageChef.Tests.Devices.ATA
}
}
public static void ReadNativeMaxAddressExt(string devPath, Device dev)
static void ReadNativeMaxAddressExt(string devPath, Device dev)
{
start:
System.Console.Clear();
@@ -792,7 +792,7 @@ namespace DiscImageChef.Tests.Devices.ATA
}
}
public static void ReadSectorsExt(string devPath, Device dev)
static void ReadSectorsExt(string devPath, Device dev)
{
ulong lba = 0;
ushort count = 1;