示例#1
0
 [Test] public void AllBigLatin()
 {
     Checker.CheckCondition <StartsWithUpperCondition>("TEST", true);
 }
示例#2
0
 public void AllSmallCyrillic()
 {
     Checker.CheckCondition <StartsWithUpperCondition>("тест", false);
 }
示例#3
0
 public void AllBigCyrillic()
 {
     Checker.CheckCondition <StartsWithUpperCondition>("ТЕСТ", true);
 }
示例#4
0
 public void StartsBigLatin()
 {
     Checker.CheckCondition <StartsWithUpperCondition>("Test", true);
 }
示例#5
0
 public void StartsBigCyrillic()
 {
     Checker.CheckCondition <StartsWithUpperCondition>("Тест", true);
 }
示例#6
0
 public void AllSmallLatinAndCyrillic()
 {
     Checker.CheckCondition <StartsWithUpperCondition>("тестetalon", false);
 }
示例#7
0
 public void AllSmallLatin()
 {
     Checker.CheckCondition <StartsWithUpperCondition>("etalon", false);
 }