Exemplo n.º 1
0
        public void MatchPronounceBlock()
        {
            var testTag = "[Pronounce: <IPA>]<Word Here>[EndPronounce]";

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            TagUtil.MatchAndAssert(testTag, tagRegex);
        }