40 lines
902 B
C++
40 lines
902 B
C++
/***************************************************************************
|
|
UnitTestRunner.h
|
|
-----------------------------------------
|
|
begin : 2011/10/27
|
|
copyright : (C) 2005 SolutionBox Inc.
|
|
author : Service 1 Team
|
|
email : svc1@solbox.com
|
|
version : 1.0
|
|
|
|
CopyRight(C) 2005 SolutionBox Inc. All Rights reserved.
|
|
Redistribution and use in source and binary forms, with or with out
|
|
modification, are not permitted in outside of SolutionBox Inc.
|
|
***************************************************************************/
|
|
#ifndef __UNITTESTRUNNER_H__
|
|
#define __UNITTESTRUNNER_H__
|
|
|
|
#include "UnitTestIncl.h"
|
|
|
|
class CUnitTestRunner
|
|
{
|
|
// Attributes
|
|
private:
|
|
|
|
protected:
|
|
|
|
public:
|
|
|
|
// Operations
|
|
private:
|
|
CUnitTestRunner();
|
|
~CUnitTestRunner();
|
|
|
|
protected:
|
|
|
|
public:
|
|
static void Run();
|
|
};
|
|
|
|
#endif // __UNITTESTRUNNER_H__
|