Skip to content

Commit b5f4dc1

Browse files
committed
Fix Rebase
1 parent 3f62216 commit b5f4dc1

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

build.cake

+4
Original file line numberDiff line numberDiff line change
@@ -691,6 +691,10 @@ void CheckForError(ref List<string> errorDetail)
691691
FilePath GetResultXmlPath(string testAssembly, string framework)
692692
{
693693
var assemblyName = System.IO.Path.GetFileNameWithoutExtension(testAssembly);
694+
695+
// Required for Test suites running under NUnitLite
696+
CreateDirectory($@"test-results\{framework}");
697+
694698
return MakeAbsolute(new FilePath($@"test-results\{framework}\{assemblyName}.xml"));
695699
}
696700

src/NUnitEngine/nunit.engine.tests/Services/TestRunnerFactoryTests/TestCases/NetStandardTestCases.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ public static IEnumerable<TestCaseData> TestCases
6868
}
6969
});
7070

71-
#if !NETCOREAPP1_6
71+
#if !NETCOREAPP1_1
7272
yield return new TestRunnerFactoryData(
7373
"SingleProject (list ctor)",
7474
new TestPackage(new[] { "a.nunit" }),

src/NUnitEngine/nunit.engine/Runners/MasterTestRunner.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ public class MasterTestRunner : ITestRunner
5656
private ITestEngineRunner _engineRunner;
5757
private readonly IServiceLocator _services;
5858
#if !NETSTANDARD1_6
59-
private readonly ExtensionService _extensionService;
59+
private readonly IExtensionService _extensionService;
6060
#endif
6161
#if NETFRAMEWORK
6262
private readonly IRuntimeFrameworkService _runtimeService;

0 commit comments

Comments
 (0)