Jsor\Doctrine\PostGIS\Functions\ST_AsLatLonTextTest::setUp PHP Method

setUp() protected method

protected setUp ( )
    protected function setUp()
    {
        parent::setUp();
        $this->_setUpEntitySchema(array('Jsor\\Doctrine\\PostGIS\\PointsEntity'));
        $em = $this->_getEntityManager();
        $entity = new PointsEntity(array('text' => 'foo', 'geometry' => 'POINT(1 1)', 'point' => 'POINT(1 1)', 'point2D' => 'SRID=3785;POINT(1 1)', 'point3DZ' => 'SRID=3785;POINT(1 1 1)', 'point3DM' => 'SRID=3785;POINTM(1 1 1)', 'point4D' => 'SRID=3785;POINT(1 1 1 1)', 'point2DNullable' => null, 'point2DNoSrid' => 'POINT(1 1)', 'geography' => 'SRID=4326;POINT(1 1)', 'pointGeography2d' => 'SRID=4326;POINT(1 1)', 'pointGeography2dSrid' => 'POINT(1 1)'));
        $em->persist($entity);
        $em->flush();
        $em->clear();
    }