コード例 #1
0
ファイル: RelationTestCase.php プロジェクト: guiwoda/fluent
 public function test_can_call_association_builder_methods()
 {
     $this->relation->fetchEager();
     $this->relation->build();
     $this->assertEquals(ClassMetadata::FETCH_EAGER, $this->getAssocValue($this->field, 'fetch'));
 }