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