Package org.jboss.test.scripts.support

Examples of org.jboss.test.scripts.support.LogFileAssertionChecker


       
    // initialise the log checkers (error checking here could be improved)
    // these will be initialised to a single server instance, so we canb't change server instances
    // part way through a test suite! :-(
    String logDir = getLogDir() ;
    errorLogChecker = new LogFileAssertionChecker(logDir + "/error.log") ;
    outputLogChecker = new LogFileAssertionChecker(logDir + "/output.log") ;
    bootLogChecker = new LogFileAssertionChecker(logDir + "/boot.log") ;
    systemLogChecker = new LogFileAssertionChecker(logDir + "/system.log") ;
  }
View Full Code Here

TOP

Related Classes of org.jboss.test.scripts.support.LogFileAssertionChecker

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.