17 lines
209 B
C++
17 lines
209 B
C++
|
|
#include <iostream>
|
|
#include "Matrix.h"
|
|
#include "ExtendedTest.h"
|
|
#include "ShortTest.h"
|
|
|
|
using namespace std;
|
|
|
|
|
|
int main() {
|
|
|
|
|
|
testAll();
|
|
testAllExtended();
|
|
cout << "Test End" << endl;
|
|
system("pause");
|
|
} |