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