コード例 #1
0
ファイル: TableTagTest.php プロジェクト: relip/xe-core
 /**
  * Tests that a simple table tag is not a join table
  */
 function testTagWithoutTypeIsNotJoinTable()
 {
     $xml_file = $this->xmlPath . "table_name_alias.xml";
     $xml_obj = Helper::getXmlObject($xml_file);
     $tag = new TableTag($xml_obj->table);
     $this->assertEquals(false, $tag->isJoinTable());
 }