lasd/librerie/exercise2/zlasdtest/test.cpp
Alessandro Ferro 15e341a6a0 Library 2
2021-04-19 12:32:33 +02:00

22 lines
507 B
C++
Executable File

#include "./exercise1/test.hpp"
#include "./exercise2/test.hpp"
/* ************************************************************************** */
#include <iostream>
using namespace std;
/* ************************************************************************** */
void lasdtest() {
cout << endl << "~*~#~*~ Welcome to the LASD Test Suite ~*~#~*~ " << endl;
//testSimpleExercise1();
testFullExercise1();
testSimpleExercise2();
testFullExercise2();
cout << endl << "Goodbye!" << endl;
}