public void TestResetAllSeatsForNewShow() { theatre.ResetAllSeatsForNewShow(); int expected = 60; int actual = theatre.CurrentVacantSeats; Assert.AreEqual(expected, actual); }