/**
  * @covers CIUnit_Framework_Assert::assertLessThanOrEqual()
  */
 public function testAssertLessThanOrEqual()
 {
     CIUnit_Framework_Assert::assertLessThanOrEqual(13, 13);
     CIUnit_Framework_Assert::assertLessThanOrEqual(13, 3);
     try {
         CIUnit_Framework_Assert::assertLessThanOrEqual(1, 11);
     } catch (CIUnit_Framework_Exception_AssertionFailed $e) {
         return;
     }
     $this->fail();
 }