Distinguish between Run and RunAll

This commit is contained in:
Jared Parsons
2015-08-20 15:54:02 -07:00
parent 2076e4a457
commit 0eaf76ca81
6 changed files with 11 additions and 11 deletions
+2 -2
View File
@@ -39,7 +39,7 @@ namespace xunit.runner.worker
case Constants.ActionDiscover:
Discover(stream, argument);
break;
case Constants.ActionRun:
case Constants.ActionRunAll:
Run(stream, argument);
break;
default:
@@ -81,7 +81,7 @@ namespace xunit.runner.worker
private static void Run(Stream stream, string assemblyPath)
{
Console.WriteLine($"run started: {assemblyPath}");
RunUtil.Go(assemblyPath, stream);
RunUtil.RunAll(assemblyPath, stream);
Console.WriteLine("run ended");
}