Jsor\Doctrine\PostGIS\Schema\SchemaManagerTest::testGetGeometrySpatialColumnInfoWithReservedWords PHP Method

testGetGeometrySpatialColumnInfoWithReservedWords() public method

    public function testGetGeometrySpatialColumnInfoWithReservedWords()
    {
        $schemaManager = new SchemaManager($this->_getConnection());
        $expected = array('type' => 'GEOMETRY', 'srid' => 0);
        $this->assertEquals($expected, $schemaManager->getGeometrySpatialColumnInfo('"user"', '"user"'));
    }