H A D | SlogfTest.java | 36 private static final String TAG = SlogfTest.class.getSimpleName(); field in SlogfTest 54 Log.w(TAG, "finishSession(): no session"); in tearDown() 62 Slogf.v(TAG, "msg"); in testV_msg() 64 verify(()-> Slog.v(TAG, "msg")); in testV_msg() 69 Slogf.v(TAG, "msg", mThrowable); in testV_msgAndThrowable() 71 verify(()-> Slog.v(TAG, "msg", mThrowable)); in testV_msgAndThrowable() 76 Slogf.v(TAG, "msg in a %s", "bottle"); in testV_msgFormatted() 78 verify(()-> Slog.v(TAG, "msg in a bottle")); in testV_msgFormatted() 83 Slogf.v(TAG, mThrowable, "msg in a %s", "bottle"); in testV_msgFormattedWithThrowable() 85 verify(()-> Slog.v(TAG, "msg in a bottle", mThrowable)); in testV_msgFormattedWithThrowable() [all …]
|