mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-10 06:34:19 +00:00
Remove inheritance from tests
This commit is contained in:
parent
4674f057fe
commit
c81a405efd
2 changed files with 7 additions and 7 deletions
|
@ -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()
|
||||
{
|
||||
|
|
|
@ -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()
|
||||
|
|
Loading…
Reference in a new issue