@@ -133,7 +133,7 @@ public void ConfirmImpactWithoutSupportsShouldProcess()
133
133
}
134
134
#endregion
135
135
136
- #region IsShouldContinueVerb and ForceSwitch
136
+ #region IsShouldContinueVerb
137
137
[ Fact ]
138
138
[ Trait ( Category . AcceptanceType , Category . CheckIn ) ]
139
139
public void ShouldContinueVerbWithForceSwitch ( )
@@ -146,21 +146,6 @@ public void ShouldContinueVerbWithForceSwitch()
146
146
AnalysisReport testReport = cmdletSignatureVerifier . GetAnalysisReport ( ) ;
147
147
Assert . Equal ( 0 , testReport . ProblemIdList . Count ) ;
148
148
}
149
-
150
- [ Fact ]
151
- [ Trait ( Category . AcceptanceType , Category . CheckIn ) ]
152
- public void ShouldContinueVerbWithoutForceSwitch ( )
153
- {
154
- cmdletSignatureVerifier . Analyze (
155
- new List < string > { _testCmdletDirPath } ,
156
- ( ( dirList ) => { return new List < string > { _testCmdletDirPath } ; } ) ,
157
- ( cmdletName ) => cmdletName . Equals ( "Export-ShouldContinueVerbWithoutForceSwitch" , StringComparison . OrdinalIgnoreCase ) ) ;
158
-
159
- AnalysisReport testReport = cmdletSignatureVerifier . GetAnalysisReport ( ) ;
160
- Assert . Equal ( 2 , testReport . ProblemIdList . Count ) ;
161
- Assert . True ( testReport . ProblemIdList . Where < int > ( ( problemId ) => problemId . Equals ( SignatureProblemId . CmdletWithDestructiveVerbNoForce ) ) . SingleOrDefault < int > ( ) . Equals ( SignatureProblemId . CmdletWithDestructiveVerbNoForce ) ) ;
162
- Assert . True ( testReport . ProblemIdList . Where < int > ( ( problemId ) => problemId . Equals ( SignatureProblemId . ActionIndicatesShouldProcess ) ) . SingleOrDefault < int > ( ) . Equals ( SignatureProblemId . ActionIndicatesShouldProcess ) ) ;
163
- }
164
149
#endregion
165
150
166
151
#region CmdletWithUnapprovedVerb
0 commit comments