|
// escript_UnitTest.cpp : Defines the entry point for the console application. |
|
|
// |
|
|
|
|
|
|
|
1 |
#include <iostream> |
#include <iostream> |
2 |
|
|
|
// TODO : Can't we just use int main(int, char* []) on all platforms? |
|
|
#ifdef MSVC |
|
|
#include <tchar.h> |
|
|
#else |
|
|
#define _TCHAR char |
|
|
#define _tmain main |
|
|
#endif |
|
|
|
|
3 |
#include "DataEmptyTestCase.h" |
#include "DataEmptyTestCase.h" |
4 |
#include "DataConstantTestCase.h" |
#include "DataConstantTestCase.h" |
5 |
#include "DataTaggedTestCase.h" |
#include "DataTaggedTestCase.h" |
22 |
|
|
23 |
using namespace CppUnitTest; |
using namespace CppUnitTest; |
24 |
|
|
25 |
int _tmain(int argc, _TCHAR* argv[]) |
int main(int argc, char* argv[]) |
26 |
{ |
{ |
27 |
// |
// |
28 |
// object which runs all of the tests |
// object which runs all of the tests |