mirror of
https://github.com/DavidGailleton/42-LibUnit.git
synced 2026-03-14 11:56:53 +01:00
28 lines
1.2 KiB
C
28 lines
1.2 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* 00_launcher.c :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: elagouch <elagouch@student.42lyon.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2026/01/24 15:32:32 by elagouch #+# #+# */
|
|
/* Updated: 2026/01/24 16:17:20 by elagouch ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#include "../tests.h"
|
|
|
|
int strlen_launcher(void) {
|
|
t_unit_test *testlist;
|
|
size_t res;
|
|
|
|
testlist = NULL;
|
|
load_test(&testlist, "null test", &test_null);
|
|
load_test(&testlist, "basic test", &test_basic);
|
|
|
|
res = launch_tests(testlist, "strlen");
|
|
clear_tests(&testlist);
|
|
|
|
return (res);
|
|
}
|