mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-06-01 02:18:44 +00:00
don't actually need these classes now
This commit is contained in:
@@ -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)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user