don't actually need these classes now

This commit is contained in:
Brendan Forster
2014-12-18 21:41:35 +09:30
parent 49bd1549d8
commit 52d445c5b1
2 changed files with 2 additions and 24 deletions
@@ -20,7 +20,7 @@ namespace Octokit.Tests.Integration
}
else
{
return new [] { new IntegrationTestCase(testMethod) };
return new [] { new XunitTestCase(testMethod) };
}
}
}
@@ -30,17 +30,4 @@ namespace Octokit.Tests.Integration
public class IntegrationTestAttribute : FactAttribute
{
}
[Serializable]
public class IntegrationTestCase : XunitTestCase
{
[EditorBrowsable(EditorBrowsableState.Never)]
[Obsolete("Called by the de-serializer", true)]
public IntegrationTestCase() { }
public IntegrationTestCase(ITestMethod testMethod)
: base(testMethod, testMethodArguments: null)
{
}
}
}
@@ -20,7 +20,7 @@ namespace Octokit.Tests.Integration
}
else
{
return new [] { new OrganizationTestCase(testMethod) };
return new [] { new XunitTestCase(testMethod) };
}
}
}
@@ -29,13 +29,4 @@ namespace Octokit.Tests.Integration
public class OrganizationTestAttribute : FactAttribute
{
}
[Serializable]
public class OrganizationTestCase : XunitTestCase
{
public OrganizationTestCase(ITestMethod testMethod)
: base(testMethod, testMethodArguments: null)
{
}
}
}