Exemplo n.º 1
0
 public function testTableRelationshipsFindParentMagic()
 {
     $row = new My_ZendDbTable_Row_TestMockRow();
     $this->assertNull($row->parentTable);
     $this->assertNull($row->ruleKey);
     $row->findParentTable1();
     $this->assertEquals('Table1', $row->parentTable);
     $this->assertNull($row->ruleKey);
     $row->findParentTable2ByRule1();
     $this->assertEquals('Table2', $row->parentTable);
     $this->assertEquals('Rule1', $row->ruleKey);
 }