Refactor the SimpleTestRunner and its test.
continuous-integration/drone/tag Build is passing Details

main 0.5.2
KKlochko 2 years ago
parent 0683be643f
commit a1b85e3771

@ -4,10 +4,10 @@ import space.kklochko.simple_jbdd.tests.Test;
import space.kklochko.simple_jbdd.tests.commands.AbstractTestCommand; import space.kklochko.simple_jbdd.tests.commands.AbstractTestCommand;
public class SimpleTestRunner extends AbstractTestRunner { public class SimpleTestRunner extends AbstractTestRunner {
AbstractTestCommand<Test> command; private AbstractTestCommand<Test> command;
public SimpleTestRunner(AbstractTestCommand<Test> command) { public SimpleTestRunner(AbstractTestCommand<Test> command) {
this.command = command; setCommand(command);
} }
public boolean run() { public boolean run() {

@ -40,7 +40,7 @@ class SimpleTestRunnerSpec extends Specification {
when: "The testCommand has been run" when: "The testCommand has been run"
def result = runner.run() def result = runner.run()
then: "The result is true" then: "The result is false"
!result !result
} }
} }

Loading…
Cancel
Save