Passed
Push — master ( 1bf5cf...d6ff14 )
by Dave
02:20
created

tests.func_logging   A

Complexity

Total Complexity 0

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 7
dl 0
loc 10
rs 10
c 0
b 0
f 0
wmc 0
1
'''test logging'''
2
from backend.fcmcomponent import ComponentName
3
from backend.fcmapp import ApplicationService
4
5
APP = ApplicationService(ComponentName.fullcycle)
6
7
APP.loginfo('Unit Test Info')
8
APP.logdebug('Unit Test Debug')
9
APP.logerror('Unit Test Error')
10