| 97 | } |
| 98 | |
| 99 | void test_oidtree__each(void) |
| 100 | { |
| 101 | FILL_TREE(&ot, "f", "9", "8", "123", "321", "320", "a", "b", "c", "d", "e"); |
| 102 | check_each(&ot, "12300", "123", NULL); |
| 103 | check_each(&ot, "3211", NULL); /* should not reach callback */ |
| 104 | check_each(&ot, "3210", "321", NULL); |
| 105 | check_each(&ot, "32100", "321", NULL); |
| 106 | check_each(&ot, "32", "320", "321", NULL); |
| 107 | } |
| 108 | |
| 109 | void test_oidtree__insert_overwrites_data(void) |
| 110 | { |
nothing calls this directly
no test coverage detected