Beispiel #1
0
 /**
  * Table name propery should returned unescaped and unprefixed table name
  * (The one in the XML file)
  */
 function testTableName()
 {
     $xml_file = $this->xmlPath . "table_name_alias.xml";
     $xml_obj = Helper::getXmlObject($xml_file);
     $tag = new TableTag($xml_obj->table);
     $this->assertEquals("modules", $tag->getTableName());
 }