(self)
| 348 | self.assertEqual(676586997978, feat.get("ALAND10")) |
| 349 | |
| 350 | def test_nonexistent_field(self): |
| 351 | source = ds_list[0] |
| 352 | ds = DataSource(source.ds) |
| 353 | msg = "invalid field name: nonexistent" |
| 354 | with self.assertRaisesMessage(GDALException, msg): |
| 355 | ds[0].get_fields("nonexistent") |
nothing calls this directly
no test coverage detected