@@ -208,15 +208,35 @@ public SettingsTask IgnoreStackTrace()
208
208
}
209
209
210
210
/// <inheritdoc cref="VerifySettings.AutoVerify(bool)"/>
211
+ [ Obsolete ( "Use SettingsTask.AutoVerify(bool includeBuildServer, bool throwException)" ) ]
211
212
[ Pure ]
213
+ public SettingsTask AutoVerify ( bool includeBuildServer = true )
214
+ {
215
+ CurrentSettings . AutoVerify ( includeBuildServer , false ) ;
216
+ return this ;
217
+ }
218
+
219
+ /// <inheritdoc cref="VerifySettings.AutoVerify(bool, bool)"/>
220
+ [ Pure ]
221
+ [ OverloadResolutionPriority ( 1 ) ]
212
222
public SettingsTask AutoVerify ( bool includeBuildServer = true , bool throwException = false )
213
223
{
214
224
CurrentSettings . AutoVerify ( includeBuildServer , throwException ) ;
215
225
return this ;
216
226
}
217
227
218
- /// <inheritdoc cref="VerifySettings.AutoVerify(bool)"/>
228
+ /// <inheritdoc cref="VerifySettings.AutoVerify(VerifyTests.AutoVerify, bool)"/>
229
+ [ Obsolete ( "Use SettingsTask.AutoVerify(AutoVerify, autoVerify, bool includeBuildServer, bool throwException)" ) ]
230
+ [ Pure ]
231
+ public SettingsTask AutoVerify ( AutoVerify autoVerify , bool includeBuildServer = true )
232
+ {
233
+ CurrentSettings . AutoVerify ( autoVerify , includeBuildServer , false ) ;
234
+ return this ;
235
+ }
236
+
237
+ /// <inheritdoc cref="VerifySettings.AutoVerify(VerifyTests.AutoVerify, bool, bool)"/>
219
238
[ Pure ]
239
+ [ OverloadResolutionPriority ( 1 ) ]
220
240
public SettingsTask AutoVerify ( AutoVerify autoVerify , bool includeBuildServer = true , bool throwException = false )
221
241
{
222
242
CurrentSettings . AutoVerify ( autoVerify , includeBuildServer , throwException ) ;
0 commit comments