Files
2024-08-31 12:07:21 +03:00

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");
}