(self, class_args, probs_map, expected)
| 63 | class TestProbNMS(unittest.TestCase): |
| 64 | @parameterized.expand(TESTS) |
| 65 | def test_output(self, class_args, probs_map, expected): |
| 66 | nms = ProbNMS(**class_args) |
| 67 | output = nms(probs_map) |
| 68 | assert_allclose(output, expected) |
| 69 | |
| 70 | |
| 71 | if __name__ == "__main__": |
nothing calls this directly
no test coverage detected