Beispiel #1
0
        public void LearningToSki_ShouldNotProcessLearningToSki_WhenAddFreeFirstAidVideoIsFalse()
        {
            // Arrange
            _iLearningToSki = new LearningToSki();

            //// Act
            var response = _iLearningToSki.AddFreeFirstAidVideo(true);

            //// Assert
            response.Equals("Adding a free 'First Aid' video to the packing slip failed due to some error, Please try again!");
        }
Beispiel #2
0
        public void LearningToSki_ShouldProcessLearningToSki_WhenAddFreeFirstAidVideoIsTrue()
        {
            // Arrange
            _iLearningToSki = new LearningToSki();

            //// Act
            var response = _iLearningToSki.AddFreeFirstAidVideo(true);

            //// Assert
            response.Equals("Added a free 'First Aid' video to the packing slip");
        }