11 lines
188 B
C++
11 lines
188 B
C++
#include <iostream>
|
|
|
|
#include "ShortTest.h"
|
|
#include "ExtendedTest.h"
|
|
|
|
int main(){
|
|
testAll();
|
|
testAllExtended();
|
|
std::cout<<"Finished IL Tests!"<<std::endl;
|
|
system("pause");
|
|
} |