blob: 65290a90b8beb68d22b153bfe9830a23af162571 (
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
27
28
29
|
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* test_ft_strtof.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: charles <charles.cabergs@gmail.com> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/04/01 19:41:59 by charles #+# #+# */
/* Updated: 2020/05/10 21:58:21 by charles ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft_test.h"
TEST_GROUP(ft_strtof);
TEST_SETUP(ft_strtof)
{}
TEST_TEAR_DOWN(ft_strtof)
{}
TEST(ft_strtof, basic)
{
/* float foo; */
/* foo = ft_strtof("0.0", NULL); */
/* TEST_ASSERT(0); */
}
|