public void SubtitleMatching_should_pass_when_using_standard_regex_features(string cardSubtitle, string regex) { var thumbnailCard = new ThumbnailCard(subtitle: cardSubtitle); var sut = new ThumbnailCardAssertions(thumbnailCard); Action act = () => sut.SubtitleMatching(regex); act.ShouldNotThrow <Exception>(); }
public void SubtitleMatching_should_throw_ThumbnailCardAssertionFailedException_for_non_matching_regexes(string cardSubtitle, string regex) { var thumbnailCard = new ThumbnailCard(subtitle: cardSubtitle); var sut = new ThumbnailCardAssertions(thumbnailCard); Action act = () => sut.SubtitleMatching(regex); act.ShouldThrow <ThumbnailCardAssertionFailedException>(); }
public void SubtitleMatching_should_pass_if_regex_exactly_matches_message_Subtitle(string cardSubtitleAndRegex) { var thumbnailCard = new ThumbnailCard(subtitle: cardSubtitleAndRegex); var sut = new ThumbnailCardAssertions(thumbnailCard); Action act = () => sut.SubtitleMatching(cardSubtitleAndRegex); act.ShouldNotThrow <Exception>(); }
public void SubtitleMatching_should_pass_regardless_of_case(string cardSubtitle, string regex) { var thumbnailCard = new ThumbnailCard(subtitle: cardSubtitle); var sut = new ThumbnailCardAssertions(thumbnailCard); Action act = () => sut.SubtitleMatching(regex); act.ShouldNotThrow <Exception>(); }
public void SubtitleMatching_should_throw_ArgumentNullException_if_regex_is_null() { var card = new ThumbnailCard(); var sut = new ThumbnailCardAssertions(card); Action act = () => sut.SubtitleMatching(null); act.ShouldThrow <ArgumentNullException>(); }
public void SubtitleMatching_should_throw_ThumbnailCardAssertionFailedException_when_text_is_null() { var card = new ThumbnailCard(); var sut = new ThumbnailCardAssertions(card); Action act = () => sut.SubtitleMatching("anything"); act.ShouldThrow <ThumbnailCardAssertionFailedException>(); }
public void SubtitleMatching_should_throw_ThumbnailCardAssertionFailedException_when_trying_to_capture_groups_but_text_is_null() { IList <string> matches; var card = new ThumbnailCard(); var sut = new ThumbnailCardAssertions(card); Action act = () => sut.SubtitleMatching("anything", "(.*)", out matches); act.ShouldThrow <ThumbnailCardAssertionFailedException>(); }
public void SubtitleMatching_should_not_output_matches_when_groupMatchingRegex_does_not_match_text() { IList <string> matches; var thumbnailCard = new ThumbnailCard(subtitle: "some text"); var sut = new ThumbnailCardAssertions(thumbnailCard); sut.SubtitleMatching("some text", "(non matching)", out matches); matches.Should().BeNull(); }
public void SubtitleMatching_should_throw_ArgumentNullException_if_groupMatchRegex_is_null() { IList <string> matches; var card = new ThumbnailCard(); var sut = new ThumbnailCardAssertions(card); Action act = () => sut.SubtitleMatching("(.*)", null, out matches); act.ShouldThrow <ArgumentNullException>(); }
public void SubtitleMatching_should_output_matches_when_groupMatchingRegex_matches_text() { IList <string> matches; const string someText = "some text"; var thumbnailCard = new ThumbnailCard(subtitle: someText); var sut = new ThumbnailCardAssertions(thumbnailCard); sut.SubtitleMatching(someText, $"({someText})", out matches); matches.First().Should().Be(someText); }
public void SubtitleMatching_should_not_output_matches_when_regex_does_not_match_text() { IList <string> matches = null; var thumbnailCard = new ThumbnailCard(subtitle: "some text"); var sut = new ThumbnailCardAssertions(thumbnailCard); Action act = () => sut.SubtitleMatching("non matching regex", "(some text)", out matches); act.ShouldThrow <ThumbnailCardAssertionFailedException>(); matches.Should().BeNull(); }
public void SubtitleMatching_should_output_multiple_matches_when_groupMatchingRegex_matches_text_several_times() { IList <string> matches; const string someText = "some text"; var thumbnailCard = new ThumbnailCard(subtitle: someText); var sut = new ThumbnailCardAssertions(thumbnailCard); const string match1 = "some"; const string match2 = "text"; sut.SubtitleMatching(someText, $"({match1}) ({match2})", out matches); matches.Should().Contain(match1, match2); }