mirror of
https://gitee.com/fastnlp/fastNLP.git
synced 2024-12-02 12:17:35 +08:00
11 lines
172 B
Python
11 lines
172 B
Python
import unittest
|
|
|
|
|
|
class MyTestCase(unittest.TestCase):
|
|
def test_something(self):
|
|
self.assertEqual(True, False)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|