You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- # Copyright (c) Alibaba, Inc. and its affiliates.
-
- import unittest
-
-
- class CompatibilityTest(unittest.TestCase):
-
- def setUp(self):
- print(('Testing %s.%s' % (type(self).__name__, self._testMethodName)))
-
- def tearDown(self):
- super().tearDown()
-
- def test_xtcocotools(self):
- from xtcocotools.coco import COCO
-
-
- if __name__ == '__main__':
- unittest.main()
|