test   A
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 5
dl 0
loc 12
rs 10
c 0
b 0
f 0
wmc 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