firstMovePlayed.play(firstMove);
firstMovePlayed.printHandsDebug();
SearchMonkey firstProxy = new SearchMonkey(first.config);
SearchMonkey secondProxy = new SearchMonkey(second.config);
firstProxy.runSearch(firstMovePlayed.duplicate());
secondProxy.runSearch(firstMovePlayed.duplicate());
firstProxy.printAsTree();
secondProxy.printAsTree();
assertEquals("played " + firstMove + " as recommended by " + firstProxy, firstProxy.getNorthSouthTricks(),
secondProxy.getNorthSouthTricks());
int tricksTakenIfFirstMovePlayed = firstProxy.getNorthSouthTricks();