/**
  * @covers CIUnit_Framework_Assert::assertNotNull()
  */
 public function testAssertNotNull()
 {
     CIUnit_Framework_Assert::assertNotNull(123);
     try {
         CIUnit_Framework_Assert::assertNotNull(null);
     } catch (CIUnit_Framework_Exception_AssertionFailed $e) {
         return;
     }
     $this->fail();
 }