Remove inheritance from tests

This commit is contained in:
Kurt 2018-11-20 13:46:12 -08:00
parent 4674f057fe
commit c81a405efd
2 changed files with 7 additions and 7 deletions

View File

@ -5,9 +5,9 @@
namespace PKHeX.Tests.Legality
{
public class ShadowTests
public static class ShadowTests
{
public class ValidityTests : ShadowTests
public static class ValidityTests
{
public static IEnumerable<object[]> Lock1()
{
@ -119,7 +119,7 @@ public static void VerifySingle(TeamLock[] teams, uint pid, int[] ivs)
}
}
public class PIDTests : ShadowTests
public static class PIDTests
{
public static IEnumerable<object[]> TestData()
{

View File

@ -6,9 +6,9 @@
namespace PKHeX.Tests
{
public class PKMTests
public static class PKMTests
{
public class StringTests : PKMTests
public class StringTests
{
[Fact]
public void EncodesOTNameCorrectly()
@ -58,7 +58,7 @@ private static void CheckStringGetSet(string check, string instr, string outstr,
}
}
public class MetDateTests : PKMTests
public class MetDateTests
{
[Fact]
public void MetDateNullWhenDateComponentsAreAllZero()
@ -134,7 +134,7 @@ public void SettingMetDateSetsComponents()
}
}
public class EggMetDateTests : PKMTests
public class EggMetDateTests
{
[Fact]
public void EggMetDateNullWhenDateComponentsAreAllZero()