mirror of
https://github.com/wassname/PointCNN.git
synced 2026-09-06 16:30:36 +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()
|