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 @@ using Xunit;
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 @@ namespace PKHeX.Tests.Legality
}
}
public class PIDTests : ShadowTests
public static class PIDTests
{
public static IEnumerable<object[]> TestData()
{

View file

@ -6,9 +6,9 @@ using Xunit;
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 @@ namespace PKHeX.Tests
}
}
public class MetDateTests : PKMTests
public class MetDateTests
{
[Fact]
public void MetDateNullWhenDateComponentsAreAllZero()
@ -134,7 +134,7 @@ namespace PKHeX.Tests
}
}
public class EggMetDateTests : PKMTests
public class EggMetDateTests
{
[Fact]
public void EggMetDateNullWhenDateComponentsAreAllZero()