1
0
mirror of synced 2025-03-24 00:43:51 +03:00
doctrine2/tests/QueryLimitTestCase.php

9 lines
208 B
PHP
Raw Normal View History

2006-08-15 21:45:00 +00:00
<?php
class Doctrine_Query_Limit_TestCase extends Doctrine_UnitTestCase {
public function testLimit() {
$this->query->from("User.Phonenumber");
$this->query->limit(20);
}
}
?>