42 lines
1.6 KiB
C
42 lines
1.6 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* vector_tests.h :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: bgoulard <bgoulard@student.42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2024/05/24 11:10:06 by bgoulard #+# #+# */
|
|
/* Updated: 2024/06/02 11:33:59 by bgoulard ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef VECTOR_TESTS_H
|
|
# define VECTOR_TESTS_H
|
|
|
|
// File: tests/ft_vector/vector_tests.c
|
|
int test_vec_add(void);
|
|
int test_vec_apply(void);
|
|
int test_vec_at(void);
|
|
int test_vec_cat(void);
|
|
int test_vec_clear(void);
|
|
int test_vec_convert_alloc_array(void);
|
|
int test_vec_destroy(void);
|
|
int test_vec_filter(void);
|
|
int test_vec_from_array(void);
|
|
int test_vec_from_size(void);
|
|
int test_vec_get(void);
|
|
int test_vec_map(void);
|
|
int test_vec_new(void);
|
|
int test_vec_pop(void);
|
|
int test_vec_remove(void);
|
|
int test_vec_remove_if(void);
|
|
int test_vec_reserve(void);
|
|
int test_vec_reverse(void);
|
|
int test_vec_shift(void);
|
|
int test_vec_shrink(void);
|
|
int test_vec_sort(void);
|
|
int test_vec_swap(void);
|
|
int test_vec_to_array(void);
|
|
int tests_vector(void);
|
|
|
|
#endif /* VECTOR_TESTS_H */
|