Skip to content

Commit

Permalink
Fix build break from mismerge
Browse files Browse the repository at this point in the history
  • Loading branch information
DustinCampbell committed Jun 5, 2018
1 parent 1ed39fc commit ea3d151
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 15 deletions.
12 changes: 6 additions & 6 deletions tests/OmniSharp.DotNetTest.Tests/AbstractTestFixture.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ public abstract class AbstractTestFixture : TestUtility.AbstractTestFixture
["DotNet:Enabled"] = "true"
};

protected const string LegacyXunitTestProject = "LegacyXunitTestProject";
protected const string LegacyNunitTestProject = "LegacyNUnitTestProject";
protected const string LegacyMSTestProject = "LegacyMSTestProject";
protected const string XunitTestProject = "XunitTestProject";
protected const string NUnitTestProject = "NUnitTestProject";
protected const string MSTestProject = "MSTestProject";
protected const string LegacyXunitTestProject = nameof(LegacyXunitTestProject);
protected const string LegacyNUnitTestProject = nameof(LegacyNUnitTestProject);
protected const string LegacyMSTestProject = nameof(LegacyMSTestProject);
protected const string XunitTestProject = nameof(XunitTestProject);
protected const string NUnitTestProject = nameof(NUnitTestProject);
protected const string MSTestProject = nameof(MSTestProject);

protected AbstractTestFixture(ITestOutputHelper output)
: base(output)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ await GetDotNetTestStartInfoAsync(
public async Task RunNunitTest()
{
await GetDotNetTestStartInfoAsync(
LegacyNunitTestProject,
LegacyNUnitTestProject,
methodName: "Main.Test.MainTest.Test",
testFramework: "nunit");
}
Expand Down
8 changes: 4 additions & 4 deletions tests/OmniSharp.DotNetTest.Tests/LegacyRunTestFacts.cs
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ await RunDotNetTestAsync(
public async Task RunNunitTest()
{
await RunDotNetTestAsync(
LegacyNunitTestProject,
LegacyNUnitTestProject,
methodName: "Main.Test.MainTest.Test",
testFramework: "nunit",
shouldPass: true);
Expand All @@ -61,7 +61,7 @@ await RunDotNetTestAsync(
public async Task RunNunitDataDriveTest1()
{
await RunDotNetTestAsync(
LegacyNunitTestProject,
LegacyNUnitTestProject,
methodName: "Main.Test.MainTest.DataDrivenTest1",
testFramework: "nunit",
shouldPass: false);
Expand All @@ -71,7 +71,7 @@ await RunDotNetTestAsync(
public async Task RunNunitDataDriveTest2()
{
await RunDotNetTestAsync(
LegacyNunitTestProject,
LegacyNUnitTestProject,
methodName: "Main.Test.MainTest.DataDrivenTest2",
testFramework: "nunit",
shouldPass: true);
Expand All @@ -81,7 +81,7 @@ await RunDotNetTestAsync(
public async Task RunNunitSourceDataDrivenTest()
{
await RunDotNetTestAsync(
LegacyNunitTestProject,
LegacyNUnitTestProject,
methodName: "Main.Test.MainTest.SourceDataDrivenTest",
testFramework: "nunit",
shouldPass: true);
Expand Down
4 changes: 0 additions & 4 deletions tests/OmniSharp.DotNetTest.Tests/TestDiscoveryFacts.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,10 @@ namespace OmniSharp.DotNetTest.Tests
public class TestDiscoveryFacts : AbstractTestFixture
{
private const string xunit = nameof(xunit);
private const string LegacyXunitTestProject = nameof(LegacyXunitTestProject);
private const string XunitTestMethod = "XunitTestMethod";
private const string XunitTestProject = nameof(XunitTestProject);

private const string nunit = nameof(nunit);
private const string LegacyNUnitTestProject = "LegacyNUnitTestProject";
private const string NUnitTestMethod = "NUnitTestMethod";
private const string NUnitTestProject = nameof(NUnitTestProject);

private const string TestProgram = "TestProgram.cs";

Expand Down

0 comments on commit ea3d151

Please sign in to comment.