(self)
| 129 | self.assertEqual(result[i].shape, expected_shapes[i], msg=str(input_param)) |
| 130 | |
| 131 | def test_ill_arg(self): |
| 132 | with self.assertRaises(ValueError): |
| 133 | SegResNetDS(spatial_dims=4) |
| 134 | |
| 135 | with self.assertRaises(ValueError): |
| 136 | SegResNetDS2(spatial_dims=4) |
| 137 | |
| 138 | def test_script(self): |
| 139 | input_param, input_shape, _ = TEST_CASE_SEGRESNET_DS[0] |
nothing calls this directly
no test coverage detected