Commit b6b0e4f5 b6b0e4f5432fbfb7cd64e7a6c892df08d2f9a8bc by Christian Gerdes

Changed default value to true for Request Plugin Stop Here After Fail WebTest, i…

…n case someone unintentionally forgets the plugin in a test.
1 parent 06751c12
...@@ -27,7 +27,7 @@ namespace LIL_VSTT_Plugins ...@@ -27,7 +27,7 @@ namespace LIL_VSTT_Plugins
27 [Description("Add this plugin to a request in order to force the webtest to stop after the request has finished.")] 27 [Description("Add this plugin to a request in order to force the webtest to stop after the request has finished.")]
28 public class StopHereAfter : WebTestRequestPlugin 28 public class StopHereAfter : WebTestRequestPlugin
29 { 29 {
30 [DisplayName("Fail the test"), DefaultValue(false), Description("If set to true will fail the test iteration.")] 30 [DisplayName("Fail the test"), DefaultValue(true), Description("If set to true will fail the test iteration.")]
31 public bool FailTest { get; set; } 31 public bool FailTest { get; set; }
32 public override void PostRequest(object sender, PostRequestEventArgs e) 32 public override void PostRequest(object sender, PostRequestEventArgs e)
33 { 33 {
......