Skip to content

Commit

Permalink
suite
Browse files Browse the repository at this point in the history
  • Loading branch information
galaxina committed Feb 2, 2024
1 parent 03a1222 commit bb25e60
Showing 1 changed file with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,13 @@ public void onTestFailedWithTimeout( ITestResult result ) {

@Override
public void onStart( ISuite suite ) {
System.out.println( suite );
System.out.println( suite.getName() );
System.out.println( suite.getHost() );
System.out.println( suite.getGuiceStage() );
System.out.println( suite.getParentModule() );
System.out.println( suite.getSuiteState() );
System.out.println( suite.getSuiteState().isFailed() );
Teamcity.testSuiteStarted( suite.getName() );
}

Expand Down

0 comments on commit bb25e60

Please sign in to comment.