public void Go_PlayerPassesGoWithoutStopping_ShouldReceive200Dollars() { Player horse = new Player("Horse"); Go go = new Go(); go.Enter(horse); go.Exit(horse); Assert.Equal(200, horse.Bank); }