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
[Description("Add this plugin to a request in order to force the webtest to stop after the request has finished.")]
public class StopHereAfter : WebTestRequestPlugin
{
[DisplayName("Fail the test"), DefaultValue(false), Description("If set to true will fail the test iteration.")]
[DisplayName("Fail the test"), DefaultValue(true), Description("If set to true will fail the test iteration.")]
public bool FailTest { get; set; }
public override void PostRequest(object sender, PostRequestEventArgs e)
{
......