@covers PHPUnit_Framework_Assert::assertCount
public function testAssertCount() {
$this
->assertCount(2, array(
1,
2,
));
try {
$this
->assertCount(2, array(
1,
2,
3,
));
} catch (PHPUnit_Framework_AssertionFailedError $e) {
return;
}
$this
->fail();
}