summaryrefslogtreecommitdiff
path: root/Testing/src/main.cpp
blob: 6c31e43a80648788e571fa044b3f15d1275c8b40 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#include "simulation\workloads\WorkloadTest.h"
#include "simulation\workloads\WorkloadHistoryTest.h"
#include "simulation\workloads\SimpleSchedulerTest.h"
#include "simulation\SimulationHistoryTest.h"
#include "modeling\TypeIndexTest.h"
#include "modeling\MachineTest.h"
#include "modeling\EntityTest.h"
#include "modeling\DatacenterTest.h"
#include "modeling\RackTest.h"
#include "modeling\RoomTest.h"

#include <gtest/gtest.h>

int main(int ac, char* av[])
{
	testing::InitGoogleTest(&ac, av);
	int rc = RUN_ALL_TESTS();
	std::cin.get();
	return rc;
}