use of limelight.ui.model.MockFrameManager in project limelight by slagyr.
the class ContextTest method setUp.
public void setUp() throws Exception {
Context.removeInstance();
Context.instance().environment = "test";
frameManager = new MockFrameManager();
studio = new MockStudio();
context = Context.instance();
context.studio = studio;
context.frameManager = frameManager;
context.os = new MockOS();
}
use of limelight.ui.model.MockFrameManager in project limelight by slagyr.
the class StageEventTest method setUp.
@Before
public void setUp() throws Exception {
assumeTrue(TestUtil.notHeadless());
Context.instance().frameManager = new MockFrameManager();
stage = new FramedStage("default", new MockStageProxy());
}
Aggregations