(self)
| 74 | self.assertEqual(result.shape, expected_shape) |
| 75 | |
| 76 | def test_ill_arg(self): |
| 77 | with self.assertRaises(ValueError): |
| 78 | SegResNet(spatial_dims=4) |
| 79 | |
| 80 | def test_script(self): |
| 81 | input_param, input_shape, expected_shape = TEST_CASE_SEGRESNET[0] |