()
| 20 | } |
| 21 | |
| 22 | @Test public void log() { |
| 23 | Throwable throwable = new Throwable(); |
| 24 | Logger.log(Logger.VERBOSE, "tag", "message", throwable); |
| 25 | |
| 26 | verify(printer).log(Logger.VERBOSE, "tag", "message", throwable); |
| 27 | } |
| 28 | |
| 29 | @Test public void debugLog() { |
| 30 | Logger.d("message %s", "arg"); |