mirror of
https://github.com/pocoproject/poco.git
synced 2025-06-11 00:22:14 +02:00
93 lines
1.9 KiB
C++
93 lines
1.9 KiB
C++
//
|
|
// TestRunnerDlg.h
|
|
//
|
|
|
|
|
|
#ifndef TestRunnerDlg_INCLUDED
|
|
#define TestRunnerDlg_INCLUDED
|
|
|
|
|
|
#include "CppUnit/CppUnit.h"
|
|
#include "CppUnit/CppUnitException.h"
|
|
#include "ActiveTest.h"
|
|
#include <vector>
|
|
#include "../res/Resource.h"
|
|
#include <afxwin.h>
|
|
#include "afxwin.h"
|
|
|
|
|
|
namespace CppUnit {
|
|
|
|
|
|
class ProgressBar;
|
|
|
|
|
|
class TestRunnerDlg: public CDialog
|
|
{
|
|
public:
|
|
TestRunnerDlg(CWnd* pParent = NULL);
|
|
~TestRunnerDlg();
|
|
|
|
void setTests(const std::vector<Test*>& tests);
|
|
|
|
void addError(TestResult* result, Test* test, CppUnitException* e);
|
|
void addFailure(TestResult* result, Test* test, CppUnitException* e);
|
|
void startTest(Test* test);
|
|
void endTest(TestResult* result, Test* test);
|
|
|
|
//{{AFX_DATA(TestRunnerDlg)
|
|
enum { IDD = IDD_DIALOG_TESTRUNNER };
|
|
// NOTE: the ClassWizard will add data members here
|
|
//}}AFX_DATA
|
|
|
|
//{{AFX_VIRTUAL(TestRunnerDlg)
|
|
protected:
|
|
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
|
|
//}}AFX_VIRTUAL
|
|
|
|
protected:
|
|
//{{AFX_MSG(TestRunnerDlg)
|
|
virtual BOOL OnInitDialog();
|
|
afx_msg void OnRun();
|
|
afx_msg void OnStop();
|
|
virtual void OnOK();
|
|
afx_msg void OnSelchangeComboTest();
|
|
afx_msg void OnBnClickedAutorun();
|
|
afx_msg void OnPaint();
|
|
//}}AFX_MSG
|
|
DECLARE_MESSAGE_MAP()
|
|
|
|
void addListEntry(const std::string& type, TestResult* result, Test* test, CppUnitException* e);
|
|
void beIdle();
|
|
void beRunning();
|
|
void beRunDisabled();
|
|
void reset();
|
|
void freeState();
|
|
void updateCountsDisplay();
|
|
void addTest(Test* pTest, int level);
|
|
|
|
struct TestInfo
|
|
{
|
|
Test* pTest;
|
|
int level;
|
|
};
|
|
std::vector<TestInfo> _tests;
|
|
ProgressBar* _testsProgress;
|
|
Test* _selectedTest;
|
|
ActiveTest* _activeTest;
|
|
TestResult* _result;
|
|
int _testsRun;
|
|
int _errors;
|
|
int _failures;
|
|
DWORD _testStartTime;
|
|
DWORD _testEndTime;
|
|
Test* _currentTest;
|
|
};
|
|
|
|
|
|
} // namespace CppUnit
|
|
|
|
|
|
#endif // TestRunnerDlg_INCLUDED
|
|
|