CPP03/ex01/src/main.cpp
2025-04-08 10:24:03 +02:00

30 lines
1.2 KiB
C++

/* ************************************************************************** */
/* */
/* :::::::: */
/* main.cpp :+: :+: */
/* +:+ */
/* By: whaffman <whaffman@student.codam.nl> +#+ */
/* +#+ */
/* Created: 2025/03/28 11:35:59 by whaffman #+# #+# */
/* Updated: 2025/04/08 09:26:25 by whaffman ######## odam.nl */
/* */
/* ************************************************************************** */
#include <iostream>
#include "ClapTrap.hpp"
#include "ScavTrap.hpp"
int main()
{
std::cout << "Starting tests..." << std::endl;
claptrap_test();
std::cout << std::endl << std::endl;
scavtrap_test();
std::cout << COLOR9 << "All tests completed" << COLOR_RESET << std::endl;
return (0);
}