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); }
public void MatchMediumLowerCase() { var testTag = "[speed: medium]"; TagUtil.MatchAndAssert(testTag, tagRegex); }
public void MatchMale() { string testTag = "[Voice: Male]"; TagUtil.MatchAndAssert(testTag, tagRegex); }
public void MatchExtraFastMixedCase() { var testTag = "[Speed: extra fast]"; TagUtil.MatchAndAssert(testTag, tagRegex); }
public void MatchSlowLowerCase() { var testTag = "[speed: slow]"; TagUtil.MatchAndAssert(testTag, tagRegex); }
public void MatchEndSpeed() { string testTag = "[EndSpeed]"; TagUtil.MatchAndAssert(testTag, tagRegex); }
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); }
public void MatchEnd() { var testTag = "[EndVoice]"; TagUtil.MatchAndAssert(testTag, tagRegex); }
public void MatchEndSpeedLowercase() { string testTag = "[endspeed]"; TagUtil.MatchAndAssert(testTag, tagRegex); }
public void MatchEndLowercase() { var testTag = "[endvoice]"; TagUtil.MatchAndAssert(testTag, tagRegex); }
public void MatchMultipleDigitIntegerInterval() { string testTag = "[Pause: 23]"; TagUtil.MatchAndAssert(testTag, tagRegex); }
public void MatchFastUpperCase() { var testTag = "[Speed: Fast]"; TagUtil.MatchAndAssert(testTag, tagRegex); }
public void MatchIntegerIntervalLowercase() { string testTag = "[pause: 2]"; TagUtil.MatchAndAssert(testTag, tagRegex); }
public void MatchExtraSlowUpperCase() { var testTag = "[Speed: Extra Slow]"; TagUtil.MatchAndAssert(testTag, tagRegex); }
public void MatchIntegerInterval() { var testTag = "[Pause: 2]"; TagUtil.MatchAndAssert(testTag, tagRegex); }
public void MatchSlowMixedCase() { var testTag = "[Speed: slow]"; TagUtil.MatchAndAssert(testTag, tagRegex); }
public void MatchMultipleDigitIntegerIntervalLowercase() { var testTag = "[pause: 23]"; TagUtil.MatchAndAssert(testTag, tagRegex); }
public void MatchMediumMixedCase() { var testTag = "[Speed: medium]"; TagUtil.MatchAndAssert(testTag, tagRegex); }
public void MatchDecimalInterval() { var testTag = "[Pause: 2.5]"; TagUtil.MatchAndAssert(testTag, tagRegex); }
public void MatchMaleLowercase() { string testTag = "[voice: male]"; TagUtil.MatchAndAssert(testTag, tagRegex); }
public void MatchEndSpeedMixedCase() { var testTag = "[endSpeed]"; TagUtil.MatchAndAssert(testTag, tagRegex); }
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); }