game.getPlayer(Direction.WEST_DEPRECATED).init(new Hand("", "", "4,3,2", ""));
game.getPlayer(Direction.NORTH_DEPRECATED).init(new Hand("K,10,3", "", "", ""));
game.getPlayer(Direction.EAST_DEPRECATED).init(new Hand("Q,A,2", "", "", ""));
game.getPlayer(Direction.SOUTH_DEPRECATED).init(new Hand("", "4,3,2", "", ""));
game.setNextToPlay(Direction.NORTH_DEPRECATED);
game.play(King.of(Spades.i()));
game.play(Two.of(Spades.i()));
game.play(Two.of(Hearts.i()));
game.play(Two.of(Diamonds.i())); //north takes trick
game.play(Ten.of(Spades.i()));
DoubleDummySolver s = new DoubleDummySolver(game);