Add unit tests for InAppPaymentRecurringContextJob.

This commit is contained in:
Alex Hart
2025-01-27 15:52:54 -04:00
committed by Greyson Parrelli
parent 762c7a6d22
commit b5f323d4af
6 changed files with 345 additions and 34 deletions

View File

@@ -37,6 +37,7 @@ public final class SystemOutLogger extends Log.Logger {
private String format(char level, String tag, String message, Throwable t) {
if (t != null) {
t.printStackTrace();
return String.format("%c[%s] %s %s:%s", level, tag, message, t.getClass().getSimpleName(), t.getMessage());
} else {
return String.format("%c[%s] %s", level, tag, message);