@covers PHPUnit_Framework_Assert::assertAttributeGreaterThan
public function testAttributeGreaterThan() {
$this
->assertAttributeGreaterThan(1, 'bar', new ClassWithNonPublicAttributes());
try {
$this
->assertAttributeGreaterThan(1, 'foo', new ClassWithNonPublicAttributes());
} catch (PHPUnit_Framework_AssertionFailedError $e) {
return;
}
$this
->fail();
}