芝麻web文件管理V1.00
编辑当前文件:/home/strato/chroot/opt/RZphp80/includes/test/MDB_QueryTool/tests/GetQueryStringTest.php
question = new tests_Common(TABLE_QUESTION); $this->question->setOption('raw', true); } function test_selectAll() { $this->_setup(); $this->assertStringEquals( 'SELECT '.TABLE_QUESTION.'.id AS id,'.TABLE_QUESTION.'.'.TABLE_QUESTION.' AS '.TABLE_QUESTION.' FROM '.TABLE_QUESTION ,$this->question->getQueryString()); } function test_selectWithWhere() { $this->_setup(); $this->question->setWhere('id=1'); $this->assertStringEquals( 'SELECT '.TABLE_QUESTION.'.id AS id,'.TABLE_QUESTION.'.'.TABLE_QUESTION.' AS '.TABLE_QUESTION.' FROM '.TABLE_QUESTION. ' WHERE id=1' ,$this->question->getQueryString()); } } ?>