Azavea.Open.DAO.PostgreSQL.Tests.DaoGeometryTests.SetupPoints C# (CSharp) Method

SetupPoints() private method

private SetupPoints ( ) : void
return void
        private void SetupPoints()
        {
            AbstractFastDAOTests.ResetTable(_pointDao.DataAccessLayer, _pointDao.ClassMap);
            _pointDao.Insert(MakePoint(100, 100));
            _pointDao.Insert(MakePoint(110, 110));
            _pointDao.Insert(MakePoint(120, 120));
            _pointDao.Insert(MakePoint(130, 130));
            _pointDao.Insert(MakePoint(140, 140));
            _pointDao.Insert(MakePoint(150, 150));
            _pointDao.Insert(MakePoint(160, 160));
            _pointDao.Insert(MakePoint(170, 170));
            _pointDao.Insert(MakePoint(180, 180));
            _pointDao.Insert(MakePoint(190, 190));
        }