19 lines
221 B
C++
19 lines
221 B
C++
#include "ExtendedTest.h"
|
|
#include "ShortTest.h"
|
|
|
|
#include "Map.h"
|
|
|
|
|
|
#include <iostream>
|
|
using namespace std;
|
|
|
|
|
|
int main() {
|
|
testAll();
|
|
testAllExtended();
|
|
|
|
cout << "That's all!" << endl;
|
|
system("pause");
|
|
return 0;
|
|
}
|