Browse CVS Repository
Contents of /tombo/Tombo/CppUnitTestApp/CppUnitTestApp.h
Parent Directory
| Revision Log
| Revision Graph
Revision 1.2 -
( show annotations)
( download)
( as text)
Sat Sep 17 15:44:32 2005 UTC
(18 years, 6 months ago)
by hirami
Branch: MAIN
CVS Tags: Tombo_1_15, Tombo_1_17, Tombo_1_16, Tombo_2_0a3, B187, B186, Tombo_1_17_1, B189, B208, B213, B212, B211, B217, B216, B215, B214, B231, B230, B219, B218, SNAPSHOT20051220, B206, B207, B188, Tombo_2_0b2, Tombo_2_0b3, Tombo_2_0b1, Tombo_2_0b4, B191, B192, B193, B194, B196, B197, B198, B199, B200, B201, B202, B203, B205, B228, B229, B226, B227, B224, B225, B222, B223, B220, B221, HEAD
Branch point for: Tombo_1_17_1_branch
Changes since 1.1: +52 -0 lines
File MIME type: text/x-chdr
- removing g_Property.TopDir() dependency still.
- add unittest proj
- implement URIScanner class but not integrated yet.
| 1 |
// CppUnitTestApp.h : main header file for the CPPUNITTESTAPP application |
| 2 |
// |
| 3 |
|
| 4 |
#if !defined(AFX_CPPUNITTESTAPP_H__6569C745_ED89_4902_9794_AD8422583BC1__INCLUDED_) |
| 5 |
#define AFX_CPPUNITTESTAPP_H__6569C745_ED89_4902_9794_AD8422583BC1__INCLUDED_ |
| 6 |
|
| 7 |
#if _MSC_VER > 1000 |
| 8 |
#pragma once |
| 9 |
#endif // _MSC_VER > 1000 |
| 10 |
|
| 11 |
#ifndef __AFXWIN_H__ |
| 12 |
#error include 'stdafx.h' before including this file for PCH |
| 13 |
#endif |
| 14 |
|
| 15 |
#include "resource.h" // main symbols |
| 16 |
|
| 17 |
///////////////////////////////////////////////////////////////////////////// |
| 18 |
// CppUnitTestApp: |
| 19 |
// See CppUnitTestApp.cpp for the implementation of this class |
| 20 |
// |
| 21 |
|
| 22 |
class CppUnitTestApp : public CWinApp |
| 23 |
{ |
| 24 |
public: |
| 25 |
CppUnitTestApp(); |
| 26 |
|
| 27 |
// Overrides |
| 28 |
// ClassWizard generated virtual function overrides |
| 29 |
//{{AFX_VIRTUAL(CppUnitTestApp) |
| 30 |
public: |
| 31 |
virtual BOOL InitInstance(); |
| 32 |
//}}AFX_VIRTUAL |
| 33 |
|
| 34 |
// Implementation |
| 35 |
|
| 36 |
//{{AFX_MSG(CppUnitTestApp) |
| 37 |
// NOTE - the ClassWizard will add and remove member functions here. |
| 38 |
// DO NOT EDIT what you see in these blocks of generated code ! |
| 39 |
//}}AFX_MSG |
| 40 |
DECLARE_MESSAGE_MAP() |
| 41 |
|
| 42 |
private: |
| 43 |
void RunTests(); |
| 44 |
}; |
| 45 |
|
| 46 |
|
| 47 |
///////////////////////////////////////////////////////////////////////////// |
| 48 |
|
| 49 |
//{{AFX_INSERT_LOCATION}} |
| 50 |
// Microsoft Visual C++ will insert additional declarations immediately before the previous line. |
| 51 |
|
| 52 |
#endif // !defined(AFX_CPPUNITTESTAPP_H__6569C745_ED89_4902_9794_AD8422583BC1__INCLUDED_) |
| |