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