(self)
| 5 | |
| 6 | class TestOpenCV(unittest.TestCase): |
| 7 | def test_imread(self): |
| 8 | img = cv2.imread('/input/tests/data/dot.png') |
| 9 | |
| 10 | self.assertEqual(1, img.shape[0]) |
| 11 | |
| 12 | def test_classifier(self): |
| 13 | face_classifier = cv2.CascadeClassifier() |
nothing calls this directly
no outgoing calls
no test coverage detected