@covers PHPUnit_Framework_Assert::assertTag
public function testAssertChildContentAttributes() {
$matcher = array(
'tag' => 'div',
'content' => 'Test Id Text',
'attributes' => array(
'id' => 'test_id',
'class' => 'my_test_class',
),
'child' => array(
'tag' => 'div',
'attributes' => array(
'id' => 'test_child_id',
),
),
);
$this
->assertTag($matcher, $this->html);
}