Package limelight.model.api

Examples of limelight.model.api.MockTheaterProxy


  public boolean helperLoader;

  public FakeProduction(String name)
  {
    super(name);
    getTheater().setProxy(new MockTheaterProxy());
  }
View Full Code Here


  }

  @Test
  public void defaultStage() throws Exception
  {
    theater.setProxy(new MockTheaterProxy());

    Stage defaultStage = theater.getDefaultStage();
    assertEquals("Limelight", defaultStage.getName());
    assertEquals(theater, defaultStage.getTheater());
    assertSame(defaultStage, theater.getDefaultStage());
View Full Code Here

TOP

Related Classes of limelight.model.api.MockTheaterProxy

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.