mirror of
https://github.com/xfarrow/lasd.git
synced 2025-01-22 15:30:21 +01:00
22 lines
507 B
C++
Executable File
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;
|
|
}
|