Rajout de doctrine/orm
[zf2.biz/application_blanche.git] / vendor / doctrine / orm / tests / Doctrine / Tests / ORM / Functional / ClearEventTest.php
diff --git a/vendor/doctrine/orm/tests/Doctrine/Tests/ORM/Functional/ClearEventTest.php b/vendor/doctrine/orm/tests/Doctrine/Tests/ORM/Functional/ClearEventTest.php
new file mode 100644 (file)
index 0000000..e86edb5
--- /dev/null
@@ -0,0 +1,40 @@
+<?php
+
+namespace Doctrine\Tests\ORM\Functional;
+
+use Doctrine\ORM\Event\OnClearEventArgs;
+use Doctrine\ORM\Events;
+
+require_once __DIR__ . '/../../TestInit.php';
+
+/**
+ * ClearEventTest
+ *
+ * @author Michael Ridgway <mcridgway@gmail.com>
+ */
+class ClearEventTest extends \Doctrine\Tests\OrmFunctionalTestCase
+{
+    protected function setUp() {
+        parent::setUp();
+    }
+
+    public function testEventIsCalledOnClear()
+    {
+        $listener = new OnClearListener;
+        $this->_em->getEventManager()->addEventListener(Events::onClear, $listener);
+
+        $this->_em->clear();
+
+        $this->assertTrue($listener->called);
+    }
+}
+
+class OnClearListener
+{
+    public $called = false;
+
+    public function onClear(OnClearEventArgs $args)
+    {
+        $this->called = true;
+    }
+}
\ No newline at end of file