Skip to content

Commit

Permalink
wrap parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
szaliszali committed Jan 9, 2020
1 parent ea11ce4 commit 18241d5
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion src/MSBuild.UnitTests/CommandLineSwitches_Tests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -743,7 +743,14 @@ public void TargetsSwitchIdentificationTests(string @switch)
bool unquoteParameters;
bool emptyParametersAllowed;

Assert.True(CommandLineSwitches.IsParameterizedSwitch(@switch, out parameterizedSwitch, out duplicateSwitchErrorMessage, out multipleParametersAllowed, out missingParametersErrorMessage, out unquoteParameters, out emptyParametersAllowed));
Assert.True(CommandLineSwitches.IsParameterizedSwitch(
@switch,
out parameterizedSwitch,
out duplicateSwitchErrorMessage,
out multipleParametersAllowed,
out missingParametersErrorMessage,
out unquoteParameters,
out emptyParametersAllowed));
Assert.Equal(CommandLineSwitches.ParameterizedSwitch.Targets, parameterizedSwitch);
Assert.Null(duplicateSwitchErrorMessage);
Assert.False(multipleParametersAllowed);
Expand Down

0 comments on commit 18241d5

Please sign in to comment.