/**
  * @covers CIUnit_Framework_Assert::assertInternalType()
  */
 public function testAssertInternalType()
 {
     $this->assertInternalType('integer', 1);
     try {
         CIUnit_Framework_Assert::assertInternalType('string', 111);
     } catch (CIUnit_Framework_Exception_AssertionFailed $e) {
         return;
     }
     $this->fail();
 }