aboutsummaryrefslogtreecommitdiff
path: root/test/main.cpp
blob: 761095f1e5c5cb5ce6170dbad2835dd758073232 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/* ************************************************************************** */
/*                                                                            */
/*                                                        :::      ::::::::   */
/*   main.cpp                                           :+:      :+:    :+:   */
/*                                                    +:+ +:+         +:+     */
/*   By: cacharle <marvin@42.fr>                    +#+  +:+       +#+        */
/*                                                +#+#+#+#+#+   +#+           */
/*   Created: 2020/02/01 10:06:52 by cacharle          #+#    #+#             */
/*   Updated: 2020/02/01 10:12:49 by cacharle         ###   ########.fr       */
/*                                                                            */
/* ************************************************************************** */

#include "ft_containers.hpp"

int main()
{
	std::cout << "=== ft_containers ===" << std::endl << std::endl;
	std::cout << "TEST: List.hpp" << std::endl;
	test_list_base();

	return 0;
}