Package br.eti.kinoshita.tap4j.model

Examples of br.eti.kinoshita.tap4j.model.Directive


  @Override
  public void onTestSkipped(ITestResult tr)
  {
    counter+=1;
    TestResult testResult = new TestResult(StatusValues.OK, counter);
    Directive skipDirective = new Directive(DirectiveValues.SKIP, "previous test failed or was skipped.");
    testResult.setDirective( skipDirective );
    this.tapProducer.addTestResult( testResult );
  }
View Full Code Here


      } else
      {
        directiveValue = DirectiveValues.SKIP;
      }
      String reason = matcher.group( 6 );
      Directive directive = new Directive( directiveValue, reason );
      testResult.setDirective( directive );
    }
   
    String commentToken = matcher.group( 7 );
    if ( commentToken != null )
View Full Code Here

TOP

Related Classes of br.eti.kinoshita.tap4j.model.Directive

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.