Home | History | Annotate | Download | only in tests

Lines Matching refs:mLog

27     private TestLogger mLog;
31 mLog = logger;
35 mLog.log("Checking that sending null strings reports an error...");
38 mLog.logAndThrow("Expected to fail on null string input!");
40 mLog.log("Caught an exception on null string parameter (expected)");
41 mLog.log("null strings behave as expected");
44 mLog.logAndThrow("Expected to receive NullPointerException on " +
47 mLog.logAndThrow("Expected to receive NullPointerException on " +
52 mLog.log("Checking that service handles @nullable IBinder...");
55 mLog.logAndThrow("Expected to fail on null Binder!");
57 mLog.log("Caught an exception on null Binder parameter (expected)");
60 mLog.logAndThrow("Expected to receive NullPointerException," +
63 mLog.logAndThrow("Expected to receive NullPointerException on " +
72 mLog.logAndThrow("Expected to fail on list with null Binder!");
74 mLog.log("Caught an exception on list with null Binder (expected)");
77 mLog.logAndThrow("Expected to receive NullPointerException," +
80 mLog.logAndThrow("Expected to receive NullPointerException on " +
85 mLog.log("Checking @nullable IInterface handling...");
89 mLog.logAndThrow("Expected to get non-null INamedCallback.");
93 mLog.logAndThrow("Expected to get null INamedCallback.");
96 mLog.logAndThrow("Unexpected exception during @nullable IInterface test: " +
99 mLog.log("@nullable IInterface handling works as expected.");