Exemple #1
0
 [Test] public void Airport_ShouldAcceptPlaneInHanger_AddPlaneToAirportHanger()
 {
     airport.AcceptPlane(airplane, weather);
     airport.AcceptPlane(airplane, weather);
     Assert.IsInstanceOf(typeof(Airplane), airport.PlaneHanger.ElementAt(1));
 }