Doctrine\Tests\ODM\PHPCR\Mapping\AbstractMappingDriverTest::testGetAllClassNamesIsIdempotent PHP Method

testGetAllClassNamesIsIdempotent() public method

    public function testGetAllClassNamesIsIdempotent()
    {
        $driver = $this->loadDriverForTestMappingDocuments();
        $original = $driver->getAllClassNames();
        $driver = $this->loadDriverForTestMappingDocuments();
        $afterTestReset = $driver->getAllClassNames();
        $this->assertEquals($original, $afterTestReset);
    }
AbstractMappingDriverTest