diff options
Diffstat (limited to 'tests/sptree.c')
-rw-r--r-- | tests/sptree.c | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/tests/sptree.c b/tests/sptree.c new file mode 100644 index 0000000..b8d1e5a --- /dev/null +++ b/tests/sptree.c @@ -0,0 +1,37 @@ +#include <assert.h> +#include <stdio.h> + +#define SPTREE_TYPE int +#define SPTREE_CMP(a, b) ((b) - (a)) +#define SPTREE_NAME ints +#include <conts/sptree.h> + +int main() +{ + struct ints ints = ints_create(); + for (int i = 0; i < 1000000; ++i) { + ints_insert(&ints, i); + } + assert(ints_len(&ints) == 1000000); + + for (int i = 0; i < 1000000; ++i) { + int *v = ints_find(&ints, i); + assert(v && *v == i); + } + + int i = 0; + foreach(ints, iter, &ints) { + /* since my trees are ordered, this must hold, although you + * might consider it an implementation detail that shouldn't be + * relied on */ + assert(iter && *iter == i); + i++; + } + + for (int i = 0; i < 1000000; ++i) { + ints_remove(&ints, i); + } + + assert(ints_len(&ints) == 0); + ints_destroy(&ints); +} |