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