1
0
mirror of synced 2025-01-29 19:41:45 +03:00

added Query Limit TestCase

This commit is contained in:
zYne 2006-08-15 21:45:00 +00:00
parent b022675ab7
commit 2e0330bfba

View File

@ -0,0 +1,8 @@
<?php
class Doctrine_Query_Limit_TestCase extends Doctrine_UnitTestCase {
public function testLimit() {
$this->query->from("User.Phonenumber");
$this->query->limit(20);
}
}
?>