コード例 #1
0
        public void TextMatching_should_throw_ActivityAssertionFailedException_when_regex_matches_no_activities(string regex)
        {
            var activities = ActivityTestData.CreateRandomActivities();

            var sut = new ActivitySetAssertions(activities);

            Action act = () => sut.TextMatching(regex);

            act.ShouldThrow <ActivityAssertionFailedException>();
        }
コード例 #2
0
        public void TextMatching_should_throw_ActivityAssertionFailedException_when_Text_of_all_activities_is_null()
        {
            var activities = Enumerable.Range(1, 5).Select(_ => new Activity()).ToList();

            var sut = new ActivitySetAssertions(activities);

            Action act = () => sut.TextMatching(".*");

            act.ShouldThrow <ActivityAssertionFailedException>();
        }
コード例 #3
0
        public void TextMatching_should_pass_if_regex_exactly_matches_Text_of_at_least_1_activity_regardless_of_case(string text, string regex)
        {
            var activities = ActivityTestData.CreateActivitySetWithOneActivityThatHasSetProperties(text: text);

            var sut = new ActivitySetAssertions(activities);

            Action act = () => sut.TextMatching(regex);

            act.ShouldNotThrow <Exception>();
        }
コード例 #4
0
        public void TextMatching_should_pass_when_using_standard_regex_features(string text, string regex)
        {
            var activities = ActivityTestData.CreateActivitySetWithOneActivityThatHasSetProperties(text: text);

            var sut = new ActivitySetAssertions(activities);

            Action act = () => sut.TextMatching(regex);

            act.ShouldNotThrow <Exception>();
        }
コード例 #5
0
        public void TextMatching_should_pass_if_regex_exactly_matches_activity_Text_of_one_activity(string textAndRegex)
        {
            var activities = ActivityTestData.CreateActivitySetWithOneActivityThatHasSetProperties(text: textAndRegex);

            var sut = new ActivitySetAssertions(activities);

            Action act = () => sut.TextMatching(textAndRegex);

            act.ShouldNotThrow <Exception>();
        }
コード例 #6
0
        public void TextMatching_should_throw_ArgumentNullException_if_regex_is_null()
        {
            var activities = ActivityTestData.CreateRandomActivities();

            var sut = new ActivitySetAssertions(activities);

            Action act = () => sut.TextMatching(null);

            act.ShouldThrow <ArgumentNullException>();
        }
コード例 #7
0
        public void TextMatching_should_throw_ActivityAssertionFailedException_when_trying_to_capture_groups_but_Text_of_all_activities_is_null()
        {
            IList <string> matches;

            var activities = Enumerable.Range(1, 5).Select(_ => new Activity()).ToList();

            var sut = new ActivitySetAssertions(activities);

            Action act = () => sut.TextMatching(".*", "(.*)", out matches);

            act.ShouldThrow <ActivityAssertionFailedException>();
        }
コード例 #8
0
        public void TextMatching_should_throw_ArgumentNullException_if_groupMatchRegex_is_null()
        {
            IList <string> matches;

            var activities = ActivityTestData.CreateRandomActivities();

            var sut = new ActivitySetAssertions(activities);

            Action act = () => sut.TextMatching("(.*)", null, out matches);

            act.ShouldThrow <ArgumentNullException>();
        }
コード例 #9
0
        public void TextMatching_should_not_output_matches_when_groupMatchingRegex_does_not_match_Text_of_any_activity()
        {
            IList <string> matches;

            var activities = ActivityTestData.CreateRandomActivities();

            var sut = new ActivitySetAssertions(activities);

            sut.TextMatching(".*", "(non matching)", out matches);

            matches.Should().BeNull();
        }
コード例 #10
0
        public void TextMatching_should_not_output_matches_when_regex_does_not_match_Text_of_any_activities()
        {
            IList <string> matches = null;

            var activities = ActivityTestData.CreateRandomActivities();

            var sut = new ActivitySetAssertions(activities);

            Action act = () => sut.TextMatching("non matching regex", "(some text)", out matches);

            act.ShouldThrow <ActivityAssertionFailedException>();
            matches.Should().BeNull();
        }
コード例 #11
0
        public void TextMatching_should_output_matches_when_groupMatchingRegex_matches_Text_of_any_activity()
        {
            IList <string> matches;

            const string someText   = "some text";
            var          activities = ActivityTestData.CreateActivitySetWithOneActivityThatHasSetProperties(text: someText);

            var sut = new ActivitySetAssertions(activities);

            sut.TextMatching(someText, $"({someText})", out matches);

            matches.First().Should().Be(someText);
        }
コード例 #12
0
        public void TextMatching_should_output_multiple_matches_when_groupMatchingRegex_matches_Text_on_multiple_activities()
        {
            IList <string> matches;

            var activities = ActivityTestData.CreateRandomActivities();

            activities.Add(new Activity(text: "some text"));
            activities.Add(new Activity(text: "same text"));

            var sut = new ActivitySetAssertions(activities);

            sut.TextMatching(".*", @"(s[oa]me) (text)", out matches);

            matches.Should().Contain("some", "same", "text");
        }
コード例 #13
0
        public void TextMatching_should_output_multiple_matches_when_groupMatchingRegex_matches_Text_several_times_for_a_single_activity()
        {
            IList <string> matches;

            const string someText   = "some text";
            var          activities = ActivityTestData.CreateActivitySetWithOneActivityThatHasSetProperties(text: someText);

            var sut = new ActivitySetAssertions(activities);

            const string match1 = "some";
            const string match2 = "text";

            sut.TextMatching(someText, $"({match1}) ({match2})", out matches);

            matches.Should().Contain(match1, match2);
        }