Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings
This repository was archived by the owner on May 15, 2024. It is now read-only.

Commit 2147de9

Browse files
add module & test files
1 parent c032e82 commit 2147de9

File tree

3 files changed

+44
-0
lines changed

3 files changed

+44
-0
lines changed

‎mtsp_parser/mtsp_json.py‎

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
#!/usr/bin/env python
2+
'''
3+
file: mtsp_json
4+
author: adh
5+
created_at: 6/14/21 12:03 PM
6+
'''
7+
8+
9+
def main():
10+
pass
11+
12+
13+
if __name__ == '__main__':
14+
main()

‎test/__init__.py‎

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
#!/usr/bin/env python
2+
'''
3+
file: __init__.py
4+
author: adh
5+
created_at: 6/14/21 12:04 PM
6+
'''
7+
8+
9+
def main():
10+
pass
11+
12+
13+
if __name__ == '__main__':
14+
main()

‎test/test_mtsp_json.py‎

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
import unittest
2+
3+
4+
class MyTestCase(unittest.TestCase):
5+
def setUp(self):
6+
pass
7+
8+
def tearDown(self):
9+
pass
10+
11+
def test_something(self):
12+
self.assertEqual(True, False)
13+
14+
15+
if __name__ == '__main__':
16+
unittest.main()

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /