Example #1
0
        public void MatchPronounceBlock()
        {
            var testTag = "[Pronounce: <IPA>]<Word Here>[EndPronounce]";

            TagUtil.MatchAndAssert(testTag, tagRegex);
        }
        public void MatchExtraFastLowerCase()
        {
            string testTag = "[speed: extra fast]";

            TagUtil.MatchAndAssert(testTag, tagRegex);
        }
Example #3
0
        public void MatchMediumLowerCase()
        {
            var testTag = "[speed: medium]";

            TagUtil.MatchAndAssert(testTag, tagRegex);
        }
        public void MatchMale()
        {
            string testTag = "[Voice: Male]";

            TagUtil.MatchAndAssert(testTag, tagRegex);
        }
Example #5
0
        public void MatchExtraFastMixedCase()
        {
            var testTag = "[Speed: extra fast]";

            TagUtil.MatchAndAssert(testTag, tagRegex);
        }
Example #6
0
        public void MatchSlowLowerCase()
        {
            var testTag = "[speed: slow]";

            TagUtil.MatchAndAssert(testTag, tagRegex);
        }
Example #7
0
        public void MatchEndSpeed()
        {
            string testTag = "[EndSpeed]";

            TagUtil.MatchAndAssert(testTag, tagRegex);
        }
Example #8
0
        public void MatchFastLowerCase()
        {
            var testTag = "[speed: fast]";

            TagUtil.MatchAndAssert(testTag, tagRegex);
        }
        public void MatchSlowUpperCase()
        {
            string testTag = "[Speed: Slow]";

            TagUtil.MatchAndAssert(testTag, tagRegex);
        }
        public void MatchMediumUpperCase()
        {
            string testTag = "[Speed: Medium]";

            TagUtil.MatchAndAssert(testTag, tagRegex);
        }
        public void MatchExtraSlowMixedCase()
        {
            string testTag = "[Speed: extra Slow]";

            TagUtil.MatchAndAssert(testTag, tagRegex);
        }
        public void MatchExtraSlowLowerCase()
        {
            string testTag = "[speed: extra slow]";

            TagUtil.MatchAndAssert(testTag, tagRegex);
        }
        public void MatchExtraFastUpperCase()
        {
            string testTag = "[Speed: Extra Fast]";

            TagUtil.MatchAndAssert(testTag, tagRegex);
        }
Example #14
0
        public void MatchEnd()
        {
            var testTag = "[EndVoice]";

            TagUtil.MatchAndAssert(testTag, tagRegex);
        }
Example #15
0
        public void MatchEndSpeedLowercase()
        {
            string testTag = "[endspeed]";

            TagUtil.MatchAndAssert(testTag, tagRegex);
        }
Example #16
0
        public void MatchEndLowercase()
        {
            var testTag = "[endvoice]";

            TagUtil.MatchAndAssert(testTag, tagRegex);
        }
Example #17
0
        public void MatchMultipleDigitIntegerInterval()
        {
            string testTag = "[Pause: 23]";

            TagUtil.MatchAndAssert(testTag, tagRegex);
        }
Example #18
0
        public void MatchFastUpperCase()
        {
            var testTag = "[Speed: Fast]";

            TagUtil.MatchAndAssert(testTag, tagRegex);
        }
Example #19
0
        public void MatchIntegerIntervalLowercase()
        {
            string testTag = "[pause: 2]";

            TagUtil.MatchAndAssert(testTag, tagRegex);
        }
Example #20
0
        public void MatchExtraSlowUpperCase()
        {
            var testTag = "[Speed: Extra Slow]";

            TagUtil.MatchAndAssert(testTag, tagRegex);
        }
Example #21
0
        public void MatchIntegerInterval()
        {
            var testTag = "[Pause: 2]";

            TagUtil.MatchAndAssert(testTag, tagRegex);
        }
Example #22
0
        public void MatchSlowMixedCase()
        {
            var testTag = "[Speed: slow]";

            TagUtil.MatchAndAssert(testTag, tagRegex);
        }
Example #23
0
        public void MatchMultipleDigitIntegerIntervalLowercase()
        {
            var testTag = "[pause: 23]";

            TagUtil.MatchAndAssert(testTag, tagRegex);
        }
Example #24
0
        public void MatchMediumMixedCase()
        {
            var testTag = "[Speed: medium]";

            TagUtil.MatchAndAssert(testTag, tagRegex);
        }
Example #25
0
        public void MatchDecimalInterval()
        {
            var testTag = "[Pause: 2.5]";

            TagUtil.MatchAndAssert(testTag, tagRegex);
        }
        public void MatchMaleLowercase()
        {
            string testTag = "[voice: male]";

            TagUtil.MatchAndAssert(testTag, tagRegex);
        }
Example #27
0
        public void MatchEndSpeedMixedCase()
        {
            var testTag = "[endSpeed]";

            TagUtil.MatchAndAssert(testTag, tagRegex);
        }
Example #28
0
        public void MatchPronounceBlockCaseInsensitive()
        {
            var testTag = "[pronounce: <IPA>]<word here>[endpronounce]";

            TagUtil.MatchAndAssert(testTag, tagRegex);
        }
        public void MatchFastMixedCase()
        {
            string testTag = "[Speed: fast]";

            TagUtil.MatchAndAssert(testTag, tagRegex);
        }