Total Complexity | 0 |
Total Lines | 12 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | #!/usr/bin/python3 |
||
2 | |||
3 | """ |
||
4 | Main program for testing |
||
5 | """ |
||
6 | |||
7 | import unittest |
||
8 | |||
9 | if __name__ == "__main__": |
||
10 | testsuite = unittest.TestLoader().discover('tests') |
||
11 | unittest.TextTestRunner(verbosity=2).run(testsuite) |
||
12 |