@covers PHPUnit_Framework_Assert::markTestIncomplete
public function testMarkTestIncomplete() {
try {
$this
->markTestIncomplete('incomplete');
} catch (PHPUnit_Framework_IncompleteTestError $e) {
$this
->assertEquals('incomplete', $e
->getMessage());
return;
}
$this
->fail();
}