Exemplo n.º 1
0
 public void IsMixedKebabSnakeCase_ShoulAcceptCapitalLetters_WhenEnumBothIsUsed(string test)
 {
     ConventionRegex.IsMixedKebabSnakeCase(test, allowedLetters: RegexLetterCase.Both)
     .Should()
     .BeTrue();
 }
Exemplo n.º 2
0
 public void IsMixedKebabSnakeCase_ShouldReturnTrue_WhenInputIsValid(string test)
 {
     ConventionRegex.IsMixedKebabSnakeCase(test)
     .Should()
     .BeTrue();
 }