You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Expected behavior
There should be some indication that the after suite hook has failed
Actual behavior
There is no indication of this failure.
Steps to replicate
Create a spec
Specification Heading
=====================
Created by sswaroop on 11/7/16
This is an executable specification file which follows markdown syntax.
Every heading in this file denotes a scenario. Every bulleted point denotes a step.
Scenario Heading
----------------
* a passing specification
Scenario Heading1
----------------
* a passing specification
Scenario Heading2
----------------
* a passing specification
Create an implementation
import com.thoughtworks.gauge.Step;
public class TestCase{
@Step("a passing specification")
public void implementation1() {
}
@AfterSuite
public void AfterSuite() throws Exception {
throw new Exception("sdf");
}
}
3. Run the specification and check the xml-report.
Expected behavior
There should be some indication that the after suite hook has failed
Actual behavior
There is no indication of this failure.
Steps to replicate
Sample result
The text was updated successfully, but these errors were encountered: