(self)
| 65 | self.assertEqual(br,(z,dim,dim)) |
| 66 | |
| 67 | def test_invalid_tiles(self): |
| 68 | with self.assertRaises(Exception) as context: |
| 69 | tileid_to_zxy(18446744073709551615) |
| 70 | |
| 71 | with self.assertRaises(Exception) as context: |
| 72 | zxy_to_tileid(32,0,0) |
| 73 | |
| 74 | with self.assertRaises(Exception) as context: |
| 75 | zxy_to_tileid(0,1,1) |
| 76 | |
| 77 | class TestFindTile(unittest.TestCase): |
| 78 | def test_find_tile_missing(self): |
nothing calls this directly
no test coverage detected