| 86 | } |
| 87 | |
| 88 | void test_oidtree__contains(void) |
| 89 | { |
| 90 | FILL_TREE(&ot, "444", "1", "2", "3", "4", "5", "a", "b", "c", "d", "e"); |
| 91 | check_contains(&ot, "44", false); |
| 92 | check_contains(&ot, "441", false); |
| 93 | check_contains(&ot, "440", false); |
| 94 | check_contains(&ot, "444", true); |
| 95 | check_contains(&ot, "4440", true); |
| 96 | check_contains(&ot, "4444", false); |
| 97 | } |
| 98 | |
| 99 | void test_oidtree__each(void) |
| 100 | { |
nothing calls this directly
no test coverage detected