| blib/lib/Object/Remote/Logging/TestLogger.pm | |||
|---|---|---|---|
| Criterion | Covered | Total | % |
| statement | n/a | ||
| branch | n/a | ||
| condition | n/a | ||
| subroutine | 0 | 1 | 0.0 |
| pod | n/a | ||
| total | 0 | 1 | 0.0 |
| line | stmt | bran | cond | sub | pod | time | code |
|---|---|---|---|---|---|---|---|
| 1 | #During testing of Object::Remote this logger is connected | ||||||
| 2 | #to the router and runs at trace level but does not output anything. | ||||||
| 3 | #This lets the logging codeblocks get executed and included | ||||||
| 4 | #in the testing. | ||||||
| 5 | |||||||
| 6 | package Object::Remote::Logging::TestLogger; | ||||||
| 7 | |||||||
| 8 | use base qw ( Object::Remote::Logging::Logger ); | ||||||
| 9 | |||||||
| 10 | #don't need to output anything | ||||||
| 11 | 0 | sub _output { } | |||||
| 12 | |||||||
| 13 | 1; |