mirror of https://github.com/xfarrow/lasd.git
18 lines
424 B
C++
18 lines
424 B
C++
|
|
||
|
#include "./exercise1/test.hpp"
|
||
|
|
||
|
/* ************************************************************************** */
|
||
|
|
||
|
#include <iostream>
|
||
|
|
||
|
using namespace std;
|
||
|
|
||
|
/* ************************************************************************** */
|
||
|
|
||
|
void lasdtest() {
|
||
|
cout << endl << "~*~#~*~ Welcome to the LASD Test Suite ~*~#~*~ " << endl;
|
||
|
testSimpleExercise1();
|
||
|
testFullExercise1();
|
||
|
cout << endl << "Goodbye!" << endl;
|
||
|
}
|