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