public void NotDefault_ObjectNull_DoesThrowException()
        {
            // Arrange
            object test = null;

            // Act
            Precondition.NotDefault(test);
        }
 public void NotDefault_ValueDefault_DoesThrowException()
 {
     // Arrange & Act
     Precondition.NotDefault(0);
 }
 public void NotDefault_ObjectNotNull_DoesNotThrowException()
 {
     // Arrange & Act
     Precondition.NotDefault(new object());
 }