示例#1
0
        public void RaisingAnAggregateEventThatIsNotHandledThrowsCorrectException()
        {
            var flight = new Flight();

            Assert.Throws <NotImplementedException>(() => flight.AddBaggageToHold(3));
        }