public void VacuousGeographyToGeometry()
            {
                var geog         = "LINESTRING (0 0 1 1, 2 2 1 1)".GetGeog();
                var expectedGeom = "LINESTRING (0 0, 2 2)".GetGeom();

                Logger.LogLine("Input Geometry: {0}", geog);
                Logger.Log("Expected Geography: {0}", expectedGeom);
                var obtainedGeom = Geography.VacuousGeographyToGeometry(geog, Constants.DefaultSRID);

                Logger.Log("Obtained Geography: {0}", obtainedGeom);
                SqlAssert.IsTrue(obtainedGeom.STEquals(expectedGeom));
            }