| 213 | } |
| 214 | |
| 215 | static void assert_refcount(void *object, int expected) { |
| 216 | int rc = pn_refcount(object); |
| 217 | // printf("pn_refcount(%s) = %d\n", pn_object_reify(object)->name, rc); |
| 218 | REQUIRE(rc == expected); |
| 219 | } |
| 220 | |
| 221 | static void test_decref_order(int *indexes, void **objects) { |
| 222 | setup(objects); |
no test coverage detected