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