From 7cb40ed9153961742e6f26144da36ceef547c936 Mon Sep 17 00:00:00 2001 From: Marco Pivetta Date: Sat, 17 May 2014 18:45:33 +0200 Subject: [PATCH] Mocking up tests for the lazy-criteria-collection --- .../Tests/ORM/LazyCriteriaCollectionTest.php | 22 +++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 tests/Doctrine/Tests/ORM/LazyCriteriaCollectionTest.php diff --git a/tests/Doctrine/Tests/ORM/LazyCriteriaCollectionTest.php b/tests/Doctrine/Tests/ORM/LazyCriteriaCollectionTest.php new file mode 100644 index 000000000..3c8ed473c --- /dev/null +++ b/tests/Doctrine/Tests/ORM/LazyCriteriaCollectionTest.php @@ -0,0 +1,22 @@ + + * + * @covers \Doctrine\ORM\LazyCriteriaCollection + */ +class LazyCriteriaCollectionTest extends PHPUnit_Framework_TestCase +{ + /** + * {@inheritDoc} + */ + protected function setUp() + { + + } +}