Package org.apache.rat.report.analyser

Examples of org.apache.rat.report.analyser.HeaderCheckWorker


  protected void tearDown() throws Exception {
    super.tearDown();
  }
 
  public void testIsFinished() throws Exception {
    HeaderCheckWorker worker = new HeaderCheckWorker(new StringReader(""), new ApacheSoftwareLicense20(), reporter, "subject");
    assertFalse(worker.isFinished());
    worker.read();
    assertTrue(worker.isFinished());
  }
View Full Code Here

TOP

Related Classes of org.apache.rat.report.analyser.HeaderCheckWorker

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.