MCPcopy Index your code
hub / github.com/ccxt/ccxt / AssertDeepEqual

Method AssertDeepEqual

java/tests/src/main/java/tests/BaseTest.java:311–334  ·  view source on GitHub ↗
(
        Exchange exchange,
        Object skippedProperties,
        Object method,
        Object a,
        Object b
    )

Source from the content-addressed store, hash-verified

309 }
310
311 public static void AssertDeepEqual(
312 Exchange exchange,
313 Object skippedProperties,
314 Object method,
315 Object a,
316 Object b
317 ) {
318 Assert(
319 deepEqual(a, b),
320 Helpers.add(
321 Helpers.add(
322 Helpers.add(
323 Helpers.add(
324 "two dicts do not match: ",
325 Functions.json(a)
326 ),
327 " != "
328 ),
329 Functions.json(b)
330 ),
331 method
332 )
333 );
334 }
335
336 // TestMain helpers
337

Callers

nothing calls this directly

Calls 4

AssertMethod · 0.95
deepEqualMethod · 0.95
addMethod · 0.95
jsonMethod · 0.95

Tested by

no test coverage detected