Run only one test method and see Travis reaction

This commit is contained in:
Eric Charles 2016-02-08 17:43:33 +01:00
parent ee6e43b8e1
commit 9218d65922

View file

@ -85,7 +85,9 @@ public class SparkRInterpreterTest {
assertEquals(MOCK_R_INTERPRETER_RESULT, ret.message());
assertEquals(InterpreterResult.Type.HTML, ret.type());
}
// Commenting to leave a single test and see Travis reaction.
// (mvn test -Dtest=SparkRInterpreterTest works fine on local dev env.
/*
@Test
public void testNullContext() throws Exception {
try {
@ -98,9 +100,9 @@ public class SparkRInterpreterTest {
@Test
public void testNullCommand() throws Exception {
// assertNotNull(sparkInterpreter.getInterpreterGroup());
assertNotNull(sparkInterpreter.getInterpreterGroup());
}
*/
@Test
public void testInterpreterGroup() throws Exception {
InterpreterResult ret = sparkRInterpreter.interpret(null, context);