Package br.eti.kinoshita.tap4j.model

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


    final String commentToken = matcher.group( 2 );
   
    if ( commentToken != null )
    {
      String text = matcher.group( 3 );
      final Comment comment = new Comment ( text );
      header.setComment( comment );
    }
   
    this.header = header;
  }
View Full Code Here


   
    String commentToken = matcher.group( 6 );
    if ( commentToken != null )
    {
      String text = matcher.group ( 7 );
      final Comment comment = new Comment( text );
      plan.setComment( comment );
    }
   
    this.plan = plan;
  }
View Full Code Here

   
    String commentToken = matcher.group( 7 );
    if ( commentToken != null )
    {
      String text = matcher.group ( 8 );
      final Comment comment = new Comment( text );
      testResult.setComment( comment );
    }
   
    this.testResults.add( testResult );
    this.tapLines.add( testResult );
View Full Code Here

    String commentToken = matcher.group( 2 );
   
    if ( commentToken != null )
    {
      String text = matcher.group( 3 );
      Comment comment = new Comment( text );
      bailOut.setComment( comment );
    }
   
    this.bailOuts.add( bailOut );
    this.tapLines.add( bailOut );
View Full Code Here

   * @param matcher REGEX Matcher.
   */
  protected void extractComment( Matcher matcher )
  {
    String text = matcher.group ( 1 );
    Comment comment = new Comment ( text );
   
    this.comments.add( comment );
    this.tapLines.add( comment );
  }
View Full Code Here

    final String commentToken = matcher.group( 2 );
   
    if ( commentToken != null )
    {
      String commentText = matcher.group( 3 );
      final Comment comment = new Comment ( commentText );
      footer.setComment( comment );
    }
   
    this.footer = footer;
  }
View Full Code Here

    final String commentToken = matcher.group( 2 );
   
    if ( commentToken != null )
    {
      String text = matcher.group( 3 );
      final Comment comment = new Comment ( text );
      header.setComment( comment );
    }
   
    this.header = header;
  }
View Full Code Here

   
    String commentToken = matcher.group( 6 );
    if ( commentToken != null )
    {
      String text = matcher.group ( 7 );
      final Comment comment = new Comment( text );
      plan.setComment( comment );
    }
   
    this.plan = plan;
  }
View Full Code Here

   
    String commentToken = matcher.group( 7 );
    if ( commentToken != null )
    {
      String text = matcher.group ( 8 );
      final Comment comment = new Comment( text );
      testResult.setComment( comment );
    }
   
    this.testResults.add( testResult );
    this.tapLines.add( testResult );
View Full Code Here

    String commentToken = matcher.group( 2 );
   
    if ( commentToken != null )
    {
      String text = matcher.group( 3 );
      Comment comment = new Comment( text );
      bailOut.setComment( comment );
    }
   
    this.bailOuts.add( bailOut );
    this.tapLines.add( bailOut );
View Full Code Here

TOP

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

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.