예제 #1
0
 /**
  * @covers ::isEmpty
  */
 public function testIsEmpty()
 {
     $model = new Model();
     $models = new Models();
     $this->assertTrue($models->isEmpty());
     $models->add($model);
     $this->assertFalse($models->isEmpty());
 }
예제 #2
0
파일: LinkMany.php 프로젝트: harp-orm/core
 /**
  * @return boolean
  */
 public function isEmpty()
 {
     return $this->current->isEmpty();
 }