* makes sure cards can be placed correctly
*/
@Test
public void testPlaceCard()
{
PlayerController pc = new PlayerController(new Cheating(), new Cheating());
String properOutPlayer1 = "0-c";
String properOutPlayer2 = "0-c \t\t1-c\n";
pc.placeCard(0, new Card(0, 'c'));
assertEquals(properOutPlayer1, outContent.toString());