MCPcopy Index your code
hub / github.com/HumbleUI/Skija / assertArrayEquals

Method assertArrayEquals

tests/java/runner/TestRunner.java:154–163  ·  view source on GitHub ↗
(Object[] expected, Object[] actual)

Source from the content-addressed store, hash-verified

152 }
153
154 public static void assertArrayEquals(Object[] expected, Object[] actual) {
155 try {
156 if (!Arrays.equals(expected, actual))
157 runner.fail("Expected " + Arrays.toString(expected) + " == " + Arrays.toString(actual));
158 else
159 runner.pass();
160 } catch(Exception e) {
161 runner.error(e);
162 }
163 }
164
165 public static void assertArrayEquals(byte[] expected, byte[] actual) {
166 try {

Callers 15

animationDisposalModeMethod · 0.95
backendStateMethod · 0.95
blendModeMethod · 0.95
clipModeMethod · 0.95
colorAlphaTypeMethod · 0.95
colorChannelMethod · 0.95
colorChannelFlagMethod · 0.95
colorTypeMethod · 0.95
contentChangeModeMethod · 0.95
encodedImageFormatMethod · 0.95

Calls 5

failMethod · 0.80
passMethod · 0.80
toStringMethod · 0.65
equalsMethod · 0.45
errorMethod · 0.45

Tested by

no test coverage detected