Exemple #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);
        }
Exemple #3
0
        public void MatchMediumLowerCase()
        {
            var testTag = "[speed: medium]";

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

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

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

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

            TagUtil.MatchAndAssert(testTag, tagRegex);
        }
Exemple #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);
        }
Exemple #14
0
        public void MatchEnd()
        {
            var testTag = "[EndVoice]";

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

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

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

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

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

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

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

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

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

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

            TagUtil.MatchAndAssert(testTag, tagRegex);
        }
Exemple #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);
        }
Exemple #27
0
        public void MatchEndSpeedMixedCase()
        {
            var testTag = "[endSpeed]";

            TagUtil.MatchAndAssert(testTag, tagRegex);
        }
Exemple #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);
        }