Click here to Skip to main content
15,892,674 members
Articles / Desktop Programming / ATL

Test Runner Application

Rate me:
Please Sign up or sign in to vote.
0.00/5 (No votes)
2 Nov 2005 106.1K   1.7K   27  
A framework for performing unit tests.
#pragma once
// 
// 
//                         MALLINCKRODT 
//         Copyright(c) 1999 All Rights Reserved 
// 
// File:
//    ClinivisionTest.h 
// 
// Description:
//    
// 
// $Log: 
//  3    CliniVision1.2         11/16/99 5:02:43 PM  Doug C. Eveland Added DocJet
//       group comment
//  2    CliniVision1.1         11/11/99 10:27:17 AM Doug C. Eveland Added handler
//       for Tools/Options menu item
//  1    CliniVision1.0         11/9/99 11:22:52 AM  Doug C. Eveland 
// $
// $Revision: 3$
// $Date: 11/16/99 5:02:43 PM$
// $Author: Doug C. Eveland$
// 
// ClinivisionTest.h : main header file for the CLINIVISIONTEST application
//

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

#ifndef __AFXWIN_H__
	#error include 'stdafx.h' before including this file for PCH
#endif

#include "resource.h"       // main symbols

#import "..\TestCore\TestCore.tlb" no_namespace


// {group:Framework Classes}
// 
// Description:
// 	The main CWinApp derived class
// 
// Author:
// 	Doug Eveland
// 
class cvCTestApp : public CWinApp
{
public:
	cvCTestApp();

	bool GetLogFileName(CString& strLogFileName);

// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(cvCTestApp)
	public:
	virtual BOOL InitInstance();
	//}}AFX_VIRTUAL

// Implementation
	COleTemplateServer m_server;
	//{{AFX_MSG(cvCTestApp)
	afx_msg void OnAppAbout();
	afx_msg void OnToolsOptions();
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
protected:
	bool SaveLogFileName(const CString& strLogFileName);
	bool GetLogFileNameRegKey(CRegKey& keyLogFileName);
};


/////////////////////////////////////////////////////////////////////////////

//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions