Rajout de doctrine/orm
[zf2.biz/application_blanche.git] / vendor / doctrine / common / tests / Doctrine / Tests / Common / Persistence / Mapping / StaticPHPDriverTest.php
diff --git a/vendor/doctrine/common/tests/Doctrine/Tests/Common/Persistence/Mapping/StaticPHPDriverTest.php b/vendor/doctrine/common/tests/Doctrine/Tests/Common/Persistence/Mapping/StaticPHPDriverTest.php
new file mode 100644 (file)
index 0000000..9f1c568
--- /dev/null
@@ -0,0 +1,35 @@
+<?php
+
+namespace Doctrine\Tests\Common\Persistence\Mapping;
+
+use Doctrine\Tests\DoctrineTestCase;
+use Doctrine\Common\Persistence\Mapping\Driver\StaticPHPDriver;
+
+class StaticPHPDriverTest extends DoctrineTestCase
+{
+    public function testLoadMetadata()
+    {
+        $metadata = $this->getMock('Doctrine\Common\Persistence\Mapping\ClassMetadata');
+        $metadata->expects($this->once())->method('getFieldNames');
+
+        $driver = new StaticPHPDriver(array(__DIR__));
+        $driver->loadMetadataForClass(__NAMESPACE__ . '\\TestEntity', $metadata);
+    }
+
+    public function testGetAllClassNames()
+    {
+        $driver = new StaticPHPDriver(array(__DIR__));
+        $classNames = $driver->getAllClassNames();
+
+        $this->assertContains(
+            'Doctrine\Tests\Common\Persistence\Mapping\TestEntity', $classNames);
+    }
+}
+
+class TestEntity
+{
+    static public function loadMetadata($metadata)
+    {
+        $metadata->getFieldNames();
+    }
+}
\ No newline at end of file