public function testMultiSelectFull()
 {
     $html = Form::multiselect('multiSelect', array('1', '2', '3', '4', '5'), '3', $this->testAttributes);
     $matcher = array('tag' => 'select', 'attributes' => array('multiple' => 'multiple', 'name' => 'multiSelect'), 'children' => array('count' => 5, 'only' => array('tag' => 'option')), 'child' => array('tag' => 'option', 'attributes' => array('value' => 3, 'selected' => 'selected')));
     $this->assertTag($matcher, $html);
 }