OSDN Git Service

72a91667a0ac09406ef84f6553cb26ae76ad3dd8
[stux/ultron.git] / src / main / Python / TestFileUtil.py
1 import unittest
2
3 class TestFileUtil (unittest.TestCase):
4     """test class of hoge"""
5
6     def test_1(self):
7         print(1)
8     def test_2(self):
9         print(2)
10
11 if __name__ == "__main__":
12     unittest.main()
13
14