@covers PHPUnit_Framework_Assert::assertSelectCount @expectedException PHPUnit_Framework_AssertionFailedError
public function testAssertSelectCountLessThanEqualToFalse() {
$selector = '#my_ul > li';
$range = array(
'<=' => 2,
);
$this
->assertSelectCount($selector, $range, $this->html);
}