@covers PHPUnit_Framework_Assert::assertTag
public function testAssertChildrenContentAttributes() {
$matcher = array(
'id' => 'test_children',
'content' => 'My Children',
'attributes' => array(
'class' => 'children',
),
'children' => array(
'less_than' => '25',
'greater_than' => '2',
'only' => array(
'tag' => 'div',
'attributes' => array(
'class' => 'my_child',
),
),
),
);
$this
->assertTag($matcher, $this->html);
}