blob: 1a6cb41dabab405a4b2cfb10aaf4d70661f1551c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* test_ft_dstrdestroy.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: charles <charles.cabergs@gmail.com> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/04/01 19:41:59 by charles #+# #+# */
/* Updated: 2020/04/04 21:04:51 by charles ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft_test.h"
TEST_GROUP(ft_dstrdestroy);
TEST_SETUP(ft_dstrdestroy)
{}
TEST_TEAR_DOWN(ft_dstrdestroy)
{}
TEST(ft_dstrdestroy, basic)
{
TEST_PASS();
}
|