use of limelight.model.api.FakePropProxy in project limelight by slagyr.
the class TextBoxTest method setUp.
@Before
public void setUp() throws Exception {
textBox = new TextBox();
propPanel = new PropPanel(new FakePropProxy());
new FakeScene().add(propPanel);
textBox.install(new CastEvent(propPanel));
}
use of limelight.model.api.FakePropProxy in project limelight by slagyr.
the class JavaPlayerTest method setUp.
@Before
public void setUp() throws Exception {
FakeFileSystem fs = FakeFileSystem.installed();
JavaProductionTest.writeSamplePlayerTo(fs.outputStream("/testProduction/classes/SamplePlayer.class"));
samplePlayerClass = new PlayerClassLoader("/testProduction/classes").loadClass("SamplePlayer");
prop = new PropPanel(new FakePropProxy());
new FakeScene().add(prop);
}
Aggregations