Package uk.co.javahelp.maven.plugin.fitnesse.util

Examples of uk.co.javahelp.maven.plugin.fitnesse.util.FitNesseHelper


    protected abstract void executeInternal(Launch... executeLaunches)
        throws MojoExecutionException, MojoFailureException;

  @Override
    public void execute() throws MojoExecutionException, MojoFailureException {
      this.fitNesseHelper = new FitNesseHelper(getLog());
        exportProperties();
        executeInternal(launches());
    }
View Full Code Here


  @After
  public void tearDown() {
    ByteArrayOutputStream logStream = new ByteArrayOutputStream();
    Log log = new DefaultLog(new PrintStreamLogger(
      Logger.LEVEL_INFO, "test", new PrintStream(logStream)));
         new FitNesseHelper(log).shutdownFitNesseServer(PORT);
  }
View Full Code Here

     */
    private String port = Integer.toString(Arguments.DEFAULT_COMMAND_PORT);

  @Override
    public final void execute() {
         new FitNesseHelper(getLog()).shutdownFitNesseServer(port);
         getLog().info("FitNesse wiki server is shutdown.");
    }
View Full Code Here

TOP

Related Classes of uk.co.javahelp.maven.plugin.fitnesse.util.FitNesseHelper

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.