TestMatch match = new TestMatch();
MatchStartOptions options = new MatchStartOptions();
CardDeck.mDummyLoadingActive = true;
// assuming a AI named SimpleAI exists!
options.setPlayer1(new MatchComputerPlayer(new AIPlayer("SimpleAI")));
options.setPlayer2(new MatchComputerPlayer(new AIPlayer("SimpleAI")));
CardDeck.mDummyLoadingActive = false;
Match.loadMatchUnstated(matchName, null, match, options);
if (!match.didMatchStart()) return;