MCPcopy Create free account
hub / github.com/HumbleUI/Skija / assertNotNull

Method assertNotNull

tests/java/runner/TestRunner.java:85–90  ·  view source on GitHub ↗
(Object expected)

Source from the content-addressed store, hash-verified

83 }
84
85 public static void assertNotNull(Object expected) {
86 if (expected == null)
87 runner.fail("Expected '" + expected + "' != 'null'");
88 else
89 runner.pass();
90 }
91
92 public static void assertNull(Object expected) {
93 if (expected != null)

Callers 7

executeMethod · 0.95
makeSubsetMethod · 0.80
executeMethod · 0.80
testICCMethod · 0.80
testExtendedApiMethod · 0.80
baseMethod · 0.80
executeMethod · 0.80

Calls 2

failMethod · 0.80
passMethod · 0.80

Tested by

no test coverage detected