Example #1
0
 public function testInlineLabelledRadioFull()
 {
     $html = Form::inline_labelled_radio('foo', 'foo', 'bar', true, $this->testAttributes);
     $matcher = $this->getLablledMatcher('radio', 'bar', true);
     $matcher['attributes']['class'] .= ' inline';
     $this->assertHTML($matcher, $html);
 }