(self)
| 71 | class TestSuggestion(unittest.TestCase): |
| 72 | |
| 73 | def test_suggested(self): |
| 74 | with self.assertRaisesRegex(ValueError, "did you mean 'GROUP'?"): |
| 75 | get_norm_layer(name="grop", spatial_dims=2) |
| 76 | |
| 77 | |
| 78 | if __name__ == "__main__": |
nothing calls this directly
no test coverage detected