public void ImageMatching_should_pass_when_using_standard_regex_features(string image, string regex) { var cardAction = new CardAction(image: image); var sut = new CardActionAssertions(cardAction); Action act = () => sut.ImageMatching(regex); act.ShouldNotThrow <Exception>(); }
public void ImageMatching_should_throw_CardActionAssertionFailedException_for_non_matching_regexes(string image, string regex) { var cardAction = new CardAction(image: image); var sut = new CardActionAssertions(cardAction); Action act = () => sut.ImageMatching(regex); act.ShouldThrow <CardActionAssertionFailedException>(); }
public void ImageMatching_should_pass_if_regex_exactly_matches_image_image(string imageAndRegex) { var cardAction = new CardAction(image: imageAndRegex); var sut = new CardActionAssertions(cardAction); Action act = () => sut.ImageMatching(imageAndRegex); act.ShouldNotThrow <Exception>(); }
public void ImageMatching_should_pass_regardless_of_case(string image, string regex) { var cardAction = new CardAction(image: image); var sut = new CardActionAssertions(cardAction); Action act = () => sut.ImageMatching(regex); act.ShouldNotThrow <Exception>(); }
public void ImageMatching_should_throw_CardActionAssertionFailedException_when_text_is_null() { var cardAction = new CardAction(); var sut = new CardActionAssertions(cardAction); Action act = () => sut.ImageMatching("anything"); act.ShouldThrow <CardActionAssertionFailedException>(); }
public void ImageMatching_should_throw_ArgumentNullException_when_regex_is_null() { var cardAction = new CardAction(image: "some text"); var sut = new CardActionAssertions(cardAction); Action act = () => sut.ImageMatching(null); act.ShouldThrow <ArgumentNullException>(); }
public void ImageMatching_should_throw_CardActionAssertionFailedException_when_trying_to_capture_groups_but_text_is_null() { IList <string> matches; var cardAction = new CardAction(); var sut = new CardActionAssertions(cardAction); Action act = () => sut.ImageMatching("anything", "(.*)", out matches); act.ShouldThrow <CardActionAssertionFailedException>(); }
public void ImageMatching_should_throw_ArgumentNullException_when_groupMatchRegex_is_null() { IList <string> matches; var cardAction = new CardAction(image: "some text"); var sut = new CardActionAssertions(cardAction); Action act = () => sut.ImageMatching(".*", null, out matches); act.ShouldThrow <ArgumentNullException>(); }
public void ImageMatching_should_not_output_matches_when_groupMatchingRegex_does_not_match_text() { IList <string> matches; var cardAction = new CardAction(image: "some text"); var sut = new CardActionAssertions(cardAction); sut.ImageMatching("some text", "(non matching)", out matches); matches.Should().BeNull(); }
public void ImageMatching_should_not_output_matches_when_regex_does_not_match_text() { IList <string> matches = null; var cardAction = new CardAction(image: "some text"); var sut = new CardActionAssertions(cardAction); Action act = () => sut.ImageMatching("non matching regex", "(some text)", out matches); act.ShouldThrow <CardActionAssertionFailedException>(); matches.Should().BeNull(); }
public void ImageMatching_should_output_matches_when_groupMatchingRegex_matches_text() { IList <string> matches; const string someText = "some text"; var cardAction = new CardAction(image: someText); var sut = new CardActionAssertions(cardAction); sut.ImageMatching(someText, $"({someText})", out matches); matches.First().Should().Be(someText); }
public void ImageMatching_should_output_multiple_matches_when_groupMatchingRegex_matches_text_several_times() { IList <string> matches; const string someText = "some text"; var cardAction = new CardAction(image: someText); var sut = new CardActionAssertions(cardAction); var match1 = "some"; var match2 = "text"; sut.ImageMatching(someText, $"({match1}) ({match2})", out matches); matches.Should().Contain(match1, match2); }