package jetbrains.mps.samples.secretCompartmentLanguage.runtime; /*Generated by MPS */ import junit.framework.TestCase; public abstract class StateMachineTest extends TestCase { private Controller myController; public StateMachineTest() { } protected final void init(StateMachineFactory stateMachineFactory) { StateMachine stateMachine = stateMachineFactory.getStateMachine(); myController = new Controller(stateMachine, new CommandChannel()); } protected final Controller getController() { return myController; } }