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

Method assertNotEquals

tests/java/runner/TestRunner.java:143–152  ·  view source on GitHub ↗
(Object expected, Object actual)

Source from the content-addressed store, hash-verified

141 }
142
143 public static void assertNotEquals(Object expected, Object actual) {
144 try {
145 if (Objects.equals(expected, actual))
146 runner.fail("Expected '" + expected + "' != '" + actual + "'");
147 else
148 runner.pass();
149 } catch(Exception e) {
150 runner.error(e);
151 }
152 }
153
154 public static void assertArrayEquals(Object[] expected, Object[] actual) {
155 try {

Callers 14

colorTypeMethod · 0.95
abcMethod · 0.80
executeMethod · 0.80
executeMethod · 0.80
testExtendedApiMethod · 0.80
baseMethod · 0.80
swapMethod · 0.80
executeMethod · 0.80
testCombiningMethod · 0.80
testEmojiMethod · 0.80
executeMethod · 0.80
storageMethod · 0.80

Calls 4

failMethod · 0.80
passMethod · 0.80
equalsMethod · 0.45
errorMethod · 0.45

Tested by

no test coverage detected