public void test_payJailFee() { //check bankrump we will set balance to 0 and return props to bank Player play = new Player("Jim"); play.setBalance(100); //play.setInJail(); //play.pay("50"); Assert.IsTrue(play.getBalance() == 50); Assert.IsFalse(play.getInJail()); }