@Before
  public void setUp() throws Exception {
    super.setUp();
    /* Set up mock JMS destination for message sender */
    ejbModule = createEJBTestModule();
    ejbModule.bindToContext(
        "MultiGameConnectionFactory", getJMSMockObjectFactory().getMockTopicConnectionFactory());
    mockTopic = getDestinationManager().createTopic("MultiGame");
    ejbModule.bindToContext("MultiGame", mockTopic);

    game = new ManantialesGame();
    game.setMode(Mode.COMPETITIVE);
    alice = (ManantialesPlayer) game.registerPlayer(new GridRegistrant("alice"));
    bob = (ManantialesPlayer) game.registerPlayer(new GridRegistrant("bob"));
    charlie = (ManantialesPlayer) game.registerPlayer(new GridRegistrant("charlie"));
    denise = (ManantialesPlayer) game.registerPlayer(new GridRegistrant("denise"));
  }