public function testConstruct()
 {
     $table = new Table("project");
     $this->assertEquals("project", $table->getName());
 }
Exemplo n.º 2
0
 /**
  * @param Table $table
  * @return string
  */
 protected function _renderTableName(Table $table)
 {
     return $table->getName();
 }