File tree 3 files changed +6
-2
lines changed
nunit.engine.tests/Services/TestRunnerFactoryTests/TestCases
3 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -691,6 +691,10 @@ void CheckForError(ref List<string> errorDetail)
691
691
FilePath GetResultXmlPath ( string testAssembly , string framework )
692
692
{
693
693
var assemblyName = System . IO . Path . GetFileNameWithoutExtension ( testAssembly ) ;
694
+
695
+ // Required for Test suites running under NUnitLite
696
+ CreateDirectory ( $@ "test-results\{ framework } ") ;
697
+
694
698
return MakeAbsolute ( new FilePath ( $@ "test-results\{ framework } \{ assemblyName } .xml") ) ;
695
699
}
696
700
Original file line number Diff line number Diff line change @@ -68,7 +68,7 @@ public static IEnumerable<TestCaseData> TestCases
68
68
}
69
69
} ) ;
70
70
71
- #if ! NETCOREAPP1_6
71
+ #if ! NETCOREAPP1_1
72
72
yield return new TestRunnerFactoryData (
73
73
"SingleProject (list ctor)" ,
74
74
new TestPackage ( new [ ] { "a.nunit" } ) ,
Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ public class MasterTestRunner : ITestRunner
56
56
private ITestEngineRunner _engineRunner ;
57
57
private readonly IServiceLocator _services ;
58
58
#if ! NETSTANDARD1_6
59
- private readonly ExtensionService _extensionService ;
59
+ private readonly IExtensionService _extensionService ;
60
60
#endif
61
61
#if NETFRAMEWORK
62
62
private readonly IRuntimeFrameworkService _runtimeService ;
You can’t perform that action at this time.
0 commit comments