diff options
| author | Martin BaĆinka <marun1@email.cz> | 2021-04-29 08:40:06 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-04-29 09:40:06 +0300 |
| commit | 35eb7753d29a9ad14b145a09c057a88131d6ede0 (patch) | |
| tree | ebe2b69d32e12126c8a1e49c5e1d0012044c2bfa /tests/tests_basic.h | |
| parent | 951f522b13b1ea0068345369a98d18d862b29582 (diff) | |
| download | libfixmath-35eb7753d29a9ad14b145a09c057a88131d6ede0.tar.gz | |
New unittests (#28)
Refactor unittests
Diffstat (limited to 'tests/tests_basic.h')
| -rw-r--r-- | tests/tests_basic.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/tests_basic.h b/tests/tests_basic.h new file mode 100644 index 0000000..a51f283 --- /dev/null +++ b/tests/tests_basic.h @@ -0,0 +1,10 @@ +#ifndef TESTS_BASIC_H +#define TESTS_BASIC_H + +int test_abs(void); +int test_add(void); +int test_mul(void); +int test_div(void); +int test_sub(); + +#endif // TESTS_BASIC_H |
