use of com.twosigma.beakerx.KernelTest in project beakerx by twosigma.
the class DateSerializerTest method setUp.
@Before
public void setUp() throws Exception {
KernelManager.register(new KernelTest());
date = new Date();
}
use of com.twosigma.beakerx.KernelTest in project beakerx by twosigma.
the class GridOutputContainerLayoutManagerSerializerTest method setUp.
@Before
public void setUp() throws Exception {
KernelManager.register(new KernelTest());
layoutManager = new GridOutputContainerLayoutManager(5) {
};
}
use of com.twosigma.beakerx.KernelTest in project beakerx by twosigma.
the class CommTest method setUp.
@Before
public void setUp() {
kernel = new KernelTest();
KernelManager.register(kernel);
comm = new Comm("targetName");
}
use of com.twosigma.beakerx.KernelTest in project beakerx by twosigma.
the class CommInfoHandlerTest method setUp.
@Before
public void setUp() {
kernel = new KernelTest();
commInfoHandler = new CommInfoHandler(kernel);
message = JupyterHandlerTest.initInfoMessage();
}
use of com.twosigma.beakerx.KernelTest in project beakerx by twosigma.
the class ClasspathMagicCommandTest method setUp.
@Before
public void setUp() throws Exception {
this.evaluator = new EvaluatorTest();
this.kernel = new KernelTest("id2", evaluator);
}
Aggregations