コード例 #1
0
ファイル: Radio.test.php プロジェクト: iyoworks/former
 public function testCheck()
 {
     $radio = Former::radio('foo')->check()->__toString();
     $matcher = $this->cg($this->rc());
     $this->assertEquals($matcher, $radio);
 }
コード例 #2
0
ファイル: Radio.test.php プロジェクト: nigobo/laravel-play
 public function testSingleWithLabel()
 {
     $radio = Former::radio('foo')->text('bar')->__toString();
     $matcher = $this->cg($this->r('foo', 'Bar'));
     $this->assertEquals($matcher, $radio);
 }