2021-05-25 22:19:44 +02:00
|
|
|
|
|
|
|
#include "./exercise1/test.hpp"
|
|
|
|
|
|
|
|
#include "./exercise2/test.hpp"
|
|
|
|
|
|
|
|
#include "./exercise3/test.hpp"
|
|
|
|
|
|
|
|
#include "./exercise4/test.hpp"
|
|
|
|
|
|
|
|
#include "./exercise5/test.hpp"
|
|
|
|
|
|
|
|
/* ************************************************************************** */
|
|
|
|
|
|
|
|
#include <iostream>
|
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
|
|
|
|
/* ************************************************************************** */
|
|
|
|
|
|
|
|
void lasdtest() {
|
|
|
|
cout << endl << "~*~#~*~ Welcome to the LASD Test Suite ~*~#~*~ " << endl;
|
2021-06-04 22:16:34 +02:00
|
|
|
testSimpleExercise1();
|
|
|
|
testFullExercise1();
|
|
|
|
testSimpleExercise2();
|
|
|
|
testFullExercise2();
|
|
|
|
testSimpleExercise3();
|
|
|
|
testFullExercise3();
|
|
|
|
testSimpleExercise4();
|
|
|
|
testFullExercise4();
|
2021-05-25 22:19:44 +02:00
|
|
|
testSimpleExercise5();
|
|
|
|
testFullExercise5();
|
|
|
|
cout << endl << "Goodbye!" << endl;
|
|
|
|
}
|