_testQuery($xml_file, $argsString, $expected, 'getDeleteSql', $columnList); } function testDeleteIsGeneratedWithoutAlias(){ $xml_file = _TEST_PATH_ . "db/xml_query/sqlite/data/module.deleteModuleConfig.xml"; $argsString = '$args->module = "comment"; $args->site_srl = 0; '; $expected = 'delete from "xe_module_config" where "module" = \'comment\' and "site_srl" = 0'; $this->_test($xml_file, $argsString, $expected); } }