| Total Complexity | 0 |
| Total Lines | 10 |
| Duplicated Lines | 0 % |
| Changes | 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 |