TestMain   A
last analyzed

Complexity

Total Complexity 3

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Importance

Changes 5
Bugs 0 Features 0
Metric Value
c 5
b 0
f 0
dl 0
loc 12
rs 10
wmc 3

3 Methods

Rating   Name   Duplication   Size   Complexity  
A setup_class() 0 3 1
A test_something() 0 2 1
A teardown_class() 0 3 1
1
class TestMain(object):
2
3
    @classmethod
4
    def setup_class(cls):
5
        pass
6
7
    def test_something(self):
8
        pass
9
10
    @classmethod
11
    def teardown_class(cls):
12
        pass
13