diff options
| author | Charles <sircharlesaze@gmail.com> | 2020-02-01 10:37:15 +0100 |
|---|---|---|
| committer | Charles <sircharlesaze@gmail.com> | 2020-02-01 10:37:15 +0100 |
| commit | 7af930f2242f933f79dfbb4ddc84bfd532069556 (patch) | |
| tree | bc24aae2b8f8f446bdfbe83f56336a7c6d7a98db /test/main.cpp | |
| parent | 6e191a07bbc57d73152ba886b6f76f694a97e525 (diff) | |
| download | ft_containers-7af930f2242f933f79dfbb4ddc84bfd532069556.tar.gz ft_containers-7af930f2242f933f79dfbb4ddc84bfd532069556.tar.bz2 ft_containers-7af930f2242f933f79dfbb4ddc84bfd532069556.zip | |
Basic list methods
Diffstat (limited to 'test/main.cpp')
| -rw-r--r-- | test/main.cpp | 19 |
1 files changed, 17 insertions, 2 deletions
diff --git a/test/main.cpp b/test/main.cpp index 156eae7..761095f 100644 --- a/test/main.cpp +++ b/test/main.cpp @@ -1,7 +1,22 @@ -#include <iostream> +/* ************************************************************************** */ +/* */ +/* ::: :::::::: */ +/* 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 << "bonjour" << std::endl; + std::cout << "=== ft_containers ===" << std::endl << std::endl; + std::cout << "TEST: List.hpp" << std::endl; + test_list_base(); + return 0; } |
