use of limelight.model.FakeProduction in project limelight by slagyr.
the class OpenCommandTest method riggerGetOpened.
@Test
public void riggerGetOpened() throws Exception {
final FakeProduction production = new FakeProduction();
studio.stubUtilitiesProduction(production);
command.execute("-r", "/path");
assertEquals("/path", studio.openedProduction);
assertEquals("openRigger", production.lastMethodCalled);
}
Aggregations