Completed
Push — master ( 159278...dbe2dc )
by Jerome
01:24
created

TestMain   A

Complexity

Total Complexity 3

Size/Duplication

Total Lines 13
Duplicated Lines 0 %

Importance

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

3 Methods

Rating   Name   Duplication   Size   Complexity  
A test_something() 0 2 1
A teardown_class() 0 3 1
A setup_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
11
    @classmethod
12
    def teardown_class(cls):
13
        pass
14
15