You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
1.0 KiB
19 lines
1.0 KiB
/* ************************************************************************** */ |
|
/* */ |
|
/* ::: :::::::: */ |
|
/* main.cpp :+: :+: :+: */ |
|
/* +:+ +:+ +:+ */ |
|
/* By: pohl <pohl@student.42.fr> +#+ +:+ +#+ */ |
|
/* +#+#+#+#+#+ +#+ */ |
|
/* Created: 2022/01/31 09:53:12 by pohl #+# #+# */ |
|
/* Updated: 2022/02/03 12:29:25 by pohl ### ########.fr */ |
|
/* */ |
|
/* ************************************************************************** */ |
|
|
|
#include <iostream> |
|
#include "CppUTest/CommandLineTestRunner.h" |
|
|
|
int main( int ac, char **av ) |
|
{ |
|
return CommandLineTestRunner::RunAllTests(ac, av); |
|
}
|
|
|