Skip to content
Snippets Groups Projects
Commit 3afc5a27 authored by Dominique Blouin's avatar Dominique Blouin
Browse files

Added standalone test runner

parent 99cd9926
No related branches found
No related tags found
No related merge requests found
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<launchConfiguration type="org.eclipse.jdt.launching.localJavaApplication">
<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_PATHS">
<listEntry value="/fr.tpt.ttool.tests.util/src/fr/tpt/ttool/tests/util/TToolUtilTestsRunner.java"/>
</listAttribute>
<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_TYPES">
<listEntry value="1"/>
</listAttribute>
<stringAttribute key="org.eclipse.jdt.launching.MAIN_TYPE" value="fr.tpt.ttool.tests.util.TToolUtilTestsRunner"/>
<stringAttribute key="org.eclipse.jdt.launching.PROJECT_ATTR" value="fr.tpt.ttool.tests.util"/>
</launchConfiguration>
package fr.tpt.ttool.tests.util;
import org.junit.runner.JUnitCore;
import org.junit.runner.Result;
import org.junit.runner.notification.Failure;
import fr.tpt.ttool.tests.util.remote.TestRshClient;
public class TToolUtilTestsRunner {
public static void main(String[] args) {
Result result = JUnitCore.runClasses( TestRshClient.class );
for ( final Failure failure : result.getFailures() ) {
System.err.println( "Test failed : " + failure.toString() );
}
if ( result.wasSuccessful() ) {
System.out.println( "All tests passed." );
}
else {
System.err.println( "Some of the tests failed!" );
}
System.exit( 0 );
}
}
......@@ -8,6 +8,7 @@ import java.io.File;
import java.io.StringWriter;
import java.io.Writer;
import org.junit.After;
import org.junit.AfterClass;
import org.junit.Before;
import org.junit.BeforeClass;
......@@ -57,6 +58,12 @@ public class TestRshClient {
client = new RshClient( "localhost" );
}
@After
public void tearDown()
throws Exception {
client = null;
}
@AfterClass
public static void tearDownAfterClass()
throws Exception {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment