Exemple #1
0
        public void Space_PlayerLandsOn_NothingHappens()
        {
            Player horse = new Player("Horse");
            Empty  empty = new Empty();

            empty.Enter(horse);
            empty.LandedOnBy(horse);

            Assert.Equal(0, horse.Bank);
        }