main.cpp 158 Bytes
Newer Older
1
2
#include "tests.h"

3
int main()
4
5
6
7
{
#ifdef WINDOWS
	_CrtSetDbgFlag(_CRTDBG_LEAK_CHECK_DF|_CRTDBG_ALLOC_MEM_DF);
#endif // WINDOWS
8
	Test::RunAll();
9
10
11

	return 0;
}