All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.linuxstuff.maven.TrinidadMojoTest Maven / Gradle / Ivy

Go to download

Trinidad is a set of extensions and additional runners for the FitNesse acceptance test management tool.

There is a newer version: 20120309
Show newest version
package org.linuxstuff.maven;

import java.io.File;

import org.apache.maven.plugin.MojoExecutionException;
import org.junit.Test;

public class TrinidadMojoTest {

	@Test
	public void runTest() throws MojoExecutionException {
		TrinidadMojo tm = new TrinidadMojo();
		tm.setResultRepositoryUri(new File(System.getProperty("java.io.tmpdir"), "fitnesse").getAbsolutePath());
		tm.setTestRepositoryUri("/home/goyqo/work/fitnesse");
		tm.setSingleSuite("FitNesse.SuiteAcceptanceTests.SuiteSlimTests");
		tm.execute();
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy