Changing dotnet-test options (#4987)

In Preview 3, the `dotnet test` options were not aligned with the CLI's
adopted format. This PR changes the options to be aligned. Where
possible/applicable, I have shortened the long options to a meaningful
mnemonic short version.

Fixes #4960
This commit is contained in:
Zlatko Knezevic 2016-12-12 23:29:29 -08:00 committed by Piotr Puszkiewicz
parent 1a49787a1f
commit d335b5de40
3 changed files with 8 additions and 8 deletions

View file

@ -91,7 +91,7 @@ namespace Microsoft.DotNet.Cli.Test.Tests
// Call test
CommandResult result = new DotnetTestCommand()
.WithWorkingDirectory(testProjectDirectory)
.ExecuteWithCapturedOutput("--noBuild");
.ExecuteWithCapturedOutput("--no-build");
// Verify
result.StdOut.Should().Contain(expectedError);