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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            TagUtil.MatchAndAssert(testTag, tagRegex);
        }