예제 #1
0
 public void ArgumentVerification_NotShouldVerificatiotStringWithSpaceInStart()
 {
     Assert.Equal(0, CheckIdentifier.ArgumentVerification(" gr eat"));
 }
예제 #2
0
 public void ArgumentVerification_ShouldVerificatiotStringWithSomeNumberInEnd()
 {
     Assert.Equal(-1, CheckIdentifier.ArgumentVerification("great44"));
 }
예제 #3
0
 public void ArgumentVerification_NotShouldVerificatiotStringOnlyWithNumberInStart()
 {
     Assert.Equal(0, CheckIdentifier.ArgumentVerification("4"));
 }
예제 #4
0
 public void ArgumentVerification_ShouldVerificationString()
 {
     Assert.Equal(-1, CheckIdentifier.ArgumentVerification("great"));
 }