use of com.twosigma.beakerx.evaluator.EvaluatorTest in project beakerx by twosigma.
the class TimeItLineModeMagicCommandTest method setUp.
@Before
public void setUp() throws Exception {
this.evaluator = new EvaluatorTest();
this.kernel = new KernelTest("id2", evaluator);
}
use of com.twosigma.beakerx.evaluator.EvaluatorTest in project beakerx by twosigma.
the class ExecuteRequestHandlerTest method setUpClass.
@BeforeClass
public static void setUpClass() {
evaluatorTest = new EvaluatorTest();
kernel = new KernelTest("sid", evaluatorTest) {
@Override
public void publish(List<Message> message) {
super.publish(message.stream().map(ExecuteRequestHandlerTest::copyMessage).collect(Collectors.toList()));
}
};
}
use of com.twosigma.beakerx.evaluator.EvaluatorTest in project beakerx by twosigma.
the class CodeTest method setUp.
@BeforeClass
public static void setUp() {
evaluator = new EvaluatorTest();
kernel = new KernelTest("id2", evaluator);
}
use of com.twosigma.beakerx.evaluator.EvaluatorTest in project beakerx by twosigma.
the class ClasspathAddMvnDepsMagicCommandTest method setUp.
@Before
public void setUp() throws Exception {
evaluator = new EvaluatorTest();
kernel = new KernelTest("id2", evaluator);
prepareLocalMavenRepository();
}
use of com.twosigma.beakerx.evaluator.EvaluatorTest in project beakerx by twosigma.
the class TimeCellModeMagicCommandTest method setUp.
@Before
public void setUp() throws Exception {
this.evaluator = new EvaluatorTest();
this.kernel = new KernelTest("id2", evaluator);
}
Aggregations