Example #1
0
        public void TestResetAllSeatsForNewShow()
        {
            theatre.ResetAllSeatsForNewShow();
            int expected = 60;
            int actual   = theatre.CurrentVacantSeats;

            Assert.AreEqual(expected, actual);
        }