Ejemplo n.º 1
0
 public function testGetOtherForeignKeys()
 {
     $fk = new ForeignKey();
     $fks[] = new ForeignKey();
     $fks[] = $fk;
     $fks[] = new ForeignKey();
     $table = $this->getTableMock('books');
     $table->expects($this->once())->method('getForeignKeys')->will($this->returnValue($fks));
     $fk->setTable($table);
     $this->assertCount(2, $fk->getOtherFks());
 }