diff options
| author | mo khan <mo.khan@gmail.com> | 2020-08-31 14:59:23 -0600 |
|---|---|---|
| committer | mo khan <mo.khan@gmail.com> | 2020-09-02 20:35:57 -0600 |
| commit | 79e375f2a4b7426abdac85d4433002f3819738ce (patch) | |
| tree | b88826b1840826ba0300eb21a4041249ff37aded /src/03/sort_test.c | |
| parent | 5748e8737b0c5cd8918ad9403864447cd4d47534 (diff) | |
test: start to work on sorting tests
Diffstat (limited to 'src/03/sort_test.c')
| -rw-r--r-- | src/03/sort_test.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/03/sort_test.c b/src/03/sort_test.c new file mode 100644 index 0000000..3dae1d1 --- /dev/null +++ b/src/03/sort_test.c @@ -0,0 +1,13 @@ +#include "sort.h" +#include <cgreen/cgreen.h> +#include <string.h> + +Ensure(one_equals_one) { + assert_that(1, is_equal_to(1)); +} + +TestSuite *sort_tests() { + TestSuite *x = create_test_suite(); + add_test(x, one_equals_one); + return x; +} |
