mirror of
https://github.com/wassname/PointCNN.git
synced 2026-08-25 11:12:57 +08:00
11 lines
193 B
Python
11 lines
193 B
Python
import unittest
|
|
|
|
class AdvancedTests(unittest.TestCase):
|
|
""" Basic test cases """
|
|
|
|
def test_example(self):
|
|
self.assertTrue(True)
|
|
|
|
if __name__ == "__main__":
|
|
unittest.main()
|