23 lines
370 B
PHP
23 lines
370 B
PHP
|
<?php
|
||
|
|
||
|
namespace Doctrine\Tests\ORM;
|
||
|
|
||
|
use Doctrine\Tests\Mocks\ConnectionMock;
|
||
|
use PHPUnit_Framework_TestCase;
|
||
|
|
||
|
/**
|
||
|
* @author Marco Pivetta <ocramius@gmail.com>
|
||
|
*
|
||
|
* @covers \Doctrine\ORM\LazyCriteriaCollection
|
||
|
*/
|
||
|
class LazyCriteriaCollectionTest extends PHPUnit_Framework_TestCase
|
||
|
{
|
||
|
/**
|
||
|
* {@inheritDoc}
|
||
|
*/
|
||
|
protected function setUp()
|
||
|
{
|
||
|
|
||
|
}
|
||
|
}
|