use of units.CommanderUnit in project java-design-patterns by iluwatar.
the class CommanderTest method commanderReady.
@Test
public void commanderReady() throws Exception {
final Commander commander = new Commander(new CommanderUnit("CommanderUnitTest"));
commander.commanderReady();
}
Aggregations