aboutsummaryrefslogtreecommitdiff
path: root/test_mini/libft/test/src/vec/test_ft_vecdestroy.c
blob: 4f121dc40a98c07898f27e5d40fad93b7c5d47e5 (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_vecdestroy.c                               :+:      :+:    :+:   */
/*                                                    +:+ +:+         +:+     */
/*   By: charles <charles.cabergs@gmail.com>        +#+  +:+       +#+        */
/*                                                +#+#+#+#+#+   +#+           */
/*   Created: 2020/04/01 19:41:59 by charles           #+#    #+#             */
/*   Updated: 2020/04/01 19:55:14 by charles          ###   ########.fr       */
/*                                                                            */
/* ************************************************************************** */

#include "libft_test.h"

TEST_GROUP(ft_vecdestroy);

TEST_SETUP(ft_vecdestroy)
{}

TEST_TEAR_DOWN(ft_vecdestroy)
{}

TEST(ft_vecdestroy, basic)
{
	TEST_PASS();
}