| 1 | #pragma once |
|---|---|
| 2 | #include <test/test.h> |
| 3 | |
| 4 | #include <math/bit_ops.h> |
| 5 | #include <math/fixed.h> |
| 6 | #include <math/hash.h> |
| 7 | #include <math/ilog2.h> |
| 8 | #include <stdbool.h> |
| 9 | #include <stddef.h> |
| 10 | #include <stdint.h> |
| 11 | #include <string.h> |
| 12 | |
| 13 | #include <math/sort.h> |
| 14 | |
| 15 | TEST_GROUP_DEFINE(fixed); |
| 16 | TEST_GROUP_DEFINE(hash); |
| 17 | TEST_GROUP_DEFINE(bit_ops); |
| 18 | TEST_GROUP_DEFINE(sort); |
| 19 |