Example #1
0
 /**
  * @covers CIUnit_Framework_Assert::assertLessThan()
  */
 public function testAssertLessThan()
 {
     CIUnit_Framework_Assert::assertLessThan(13, 2);
     try {
         CIUnit_Framework_Assert::assertLessThan(2, 11);
     } catch (CIUnit_Framework_Exception_AssertionFailed $e) {
         return;
     }
     $this->fail();
 }