Rajinder Yadav - Windows C++ Development Tools & Resources :Design, Code, Test, Deploy

// Source: UnitTest.h
// Author: Rajinder Yadav
// Date:   July 5, 2004
//
// Copyright (c) Rajinder Yadav 2004, 2007
//
// web:   http://devmentor.org
// email: rajinder@devmentor.org
//

#ifndef _UnitTest_h_
#define _UnitTest_h_

#ifdef UTCORE_EXPORTS
#define UTCORE_API __declspec(dllexport)
#else
#define 
UTCORE_API __declspec(dllimport)
#endif

#include 
<iostream>
#include <vector>
#include <string>
#include <sstream>
#include <fstream>
#include <algorithm>

#include <UnitTestDefs.h>
#include <IUnitTestRunner.h>
#include <UnitTestRunner.h>
#include <UnitTestAssembly.h>
#include <IUnitTestObserver.h>
#include <StreamLogger.h>
#include <ConsoleLogger.h>

#endif // _UnitTest_h_
Back

Copyright © 2007 Rajinder Yadav, All rights reserved