diff options
| author | Charles <sircharlesaze@gmail.com> | 2020-03-30 22:43:25 +0200 |
|---|---|---|
| committer | Charles <sircharlesaze@gmail.com> | 2020-03-30 22:43:25 +0200 |
| commit | dd5d60dc4cf8052feb00847f9b2276cf105b0551 (patch) | |
| tree | 2c71a2799dd4314b6ca22f3847b30d7553845dce /test/src/lst/test_ft_lstdestroy.c | |
| parent | 901402c99018422c994bdb297e3ba404969c88ea (diff) | |
| download | libft-dd5d60dc4cf8052feb00847f9b2276cf105b0551.tar.gz libft-dd5d60dc4cf8052feb00847f9b2276cf105b0551.tar.bz2 libft-dd5d60dc4cf8052feb00847f9b2276cf105b0551.zip | |
Renaming test according to src
Diffstat (limited to 'test/src/lst/test_ft_lstdestroy.c')
| -rw-r--r-- | test/src/lst/test_ft_lstdestroy.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/test/src/lst/test_ft_lstdestroy.c b/test/src/lst/test_ft_lstdestroy.c new file mode 100644 index 0000000..e7b98c5 --- /dev/null +++ b/test/src/lst/test_ft_lstdestroy.c @@ -0,0 +1,14 @@ +#include "libft_test.h" + +TEST_GROUP(ft_lstdestroy); + +TEST_SETUP(ft_lstdestroy) +{} + +TEST_TEAR_DOWN(ft_lstdestroy) +{} + +TEST(ft_lstdestroy, basic) +{ + TEST_PASS(); // how to test free? +} |
