コード例 #1
0
ファイル: FormTest.php プロジェクト: sohailaammarocs/lfc
 /** @test */
 public function a_form_can_have_multiple_sections()
 {
     $this->form->section('foo');
     $this->form->section('bar');
     $this->form->section('baz');
     $this->assertFalse($this->form->isEmpty());
     $this->assertTrue($this->form->hasSections());
     $this->assertEquals(3, $this->form->count());
 }