Exemple #1
0
 public function testGetPK()
 {
     $foo = new Person();
     $this->assertCount(1, $foo->getPK());
     $foo = new PkLess();
     $this->assertCount(0, $foo->getPK());
     $foo = new Trade();
     $this->assertCount(2, $foo->getPK());
 }