. */ /** * Test case for testing the saving and referencing of query identifiers. * * @package Doctrine * @subpackage Query * @author Guilherme Blanco * @author Janne Vanhala * @author Konsta Vesterinen * @license http://www.opensource.org/licenses/lgpl-license.php LGPL * @link http://www.phpdoctrine.org * @since 1.0 * @version $Revision$ * @todo 1) [romanb] We might want to split the SQL generation tests into multiple * testcases later since we'll have a lot of them and we might want to have special SQL * generation tests for some dbms specific SQL syntaxes. */ class Orm_Query_UpdateSqlGenerationTest extends Doctrine_OrmTestCase { public function testWithoutWhere() { $q = new Doctrine_Query(); // NO WhereClause $q->setDql('UPDATE CmsUser u SET name = ?'); $this->assertEquals('UPDATE cms_user cu SET cu.name = ? WHERE 1 = 1', $q->getSql()); $q->free(); $q->setDql('UPDATE CmsUser u SET name = ?, username = ?'); $this->assertEquals('UPDATE cms_user cu SET cu.name = ?, cu.username = ? WHERE 1 = 1', $q->getSql()); $q->free(); } }