コード例 #1
0
ファイル: LinkManyTest.php プロジェクト: harp-orm/harp
 /**
  * @covers ::invoke
  */
 public function testInvoke()
 {
     $models = [new City(['id' => 10]), new City(['id' => 20])];
     $link = new LinkMany(new Country(), Country::getRepo()->getRel('cities'), $models);
     $result = $link->invoke('getId');
     $this->assertSame([10, 20], $result);
 }