Method
AssertDeepEqual
(
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
Tested by
no test coverage detected