use of com.twosigma.beakerx.KernelTest in project beakerx by twosigma.
the class MessageCreatorTest method setUp.
@Before
public void setUp() throws Exception {
kernel = new KernelTest("id1");
seo = new SimpleEvaluationObject("code");
seo.setJupyterMessage(new Message());
}
use of com.twosigma.beakerx.KernelTest in project beakerx by twosigma.
the class DisplayOutputContainerTest method setUp.
@Before
public void setUp() throws Exception {
kernel = new KernelTest();
KernelManager.register(kernel);
}
use of com.twosigma.beakerx.KernelTest in project beakerx by twosigma.
the class ProgressReportingTest method setUp.
@Before
public void setUp() throws Exception {
groovyKernel = new KernelTest();
KernelManager.register(groovyKernel);
progress = new ProgressReporting();
}
use of com.twosigma.beakerx.KernelTest in project beakerx by twosigma.
the class CyclingOutputContainerLayoutManagerSerializerTest method setUp.
@Before
public void setUp() throws Exception {
KernelManager.register(new KernelTest());
layoutManager = new CyclingOutputContainerLayoutManager();
}
use of com.twosigma.beakerx.KernelTest in project beakerx by twosigma.
the class DashboardLayoutManagerSerializerTest method setUp.
@Before
public void setUp() throws Exception {
KernelManager.register(new KernelTest());
layoutManager = new DashboardLayoutManager(5);
}
Aggregations