Beispiel #1
0
 public function testAddRecordViaMagicMethod()
 {
     $table = $this->userColl->getTable();
     $user = $table->createRecord();
     $this->userColl[] = $user;
     /** @noinspection PhpUndefinedMethodInspection */
     $this->assertTrue($this->userColl->has($user));
 }