| 54 | { |
| 55 | |
| 56 | TEST(SpatialReferenceTest, test_ctor) |
| 57 | { |
| 58 | SpatialReference srs; |
| 59 | |
| 60 | EXPECT_EQ(srs.getProj4(), ""); |
| 61 | EXPECT_EQ(srs.getWKT(), ""); |
| 62 | EXPECT_TRUE(srs.empty()); |
| 63 | } |
| 64 | |
| 65 | // Test round-tripping proj.4 string |
| 66 | TEST(SpatialReferenceTest, test_proj4_roundtrip) |
nothing calls this directly
no test coverage detected