Ejemplo n.º 1
0
 public void StringAssert_IsNullOrEmpty_WithNonNullNonEmptyString_ExceptionIsThrown()
 {
     try {
         StringAssert.IsNullOrEmpty("some value");
         Assert.Fail("AssertFailedException was expected");
     }
     catch (AssertFailedException) {
     }
 }
Ejemplo n.º 2
0
 public void StringAssert_IsNullOrEmptyWithMessage_WithNonNullNonEmptyString_ExceptionIsThrown()
 {
     try {
         StringAssert.IsNullOrEmpty("some value", "AssertMessage");
         Assert.Fail("AssertFailedException was expected");
     }
     catch (AssertFailedException ex) {
         Assert.AreEqual("AssertMessage", ex.Message);
     }
 }
Ejemplo n.º 3
0
 public void StringAssert_IsNullOrEmptyWithMessage_WithNullString_NoExceptionIsThrown()
 {
     StringAssert.IsNullOrEmpty(null, "AssertMessage");
 }
Ejemplo n.º 4
0
 public void StringAssert_IsNullOrEmpty_WithNullString_NoExceptionIsThrown()
 {
     StringAssert.IsNullOrEmpty(null);
 }
Ejemplo n.º 5
0
 public void StringAssert_IsNullOrEmpty_WithEmptyString_NoExceptionIsThrown()
 {
     StringAssert.IsNullOrEmpty(string.Empty);
 }