summaryrefslogtreecommitdiff
path: root/class-tests-main.cpp
blob: 86a289e83440e2f3eeb648bdf845d94bb65b710e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#include <iostream>
#include "class-tests.hpp"

/*
 *
 * 
 *
 *
 */

int main () {

	CLASS_TESTS a;
	a.Get_System_Info();
	a.print_CT();
	if(a.isFailed()) {
		std::cout << "Fail." << std::endl;
		return 1;
	}
	
	if(a.isSuccess()) {
		std::cout << "Success!" << std::endl;
	}
	
	return 0;
}