mirror of
https://github.com/wassname/PointCNN.git
synced 2026-08-21 11:11:07 +08:00
13 lines
220 B
Python
13 lines
220 B
Python
import unittest
|
|
|
|
from context import pointcnn
|
|
|
|
class BasicTests(unittest.TestCase):
|
|
""" Basic test cases """
|
|
|
|
def test_example(self):
|
|
self.assertTrue(True)
|
|
|
|
if __name__ == "__main__":
|
|
unittest.main()
|