1
//---------------------------------------------------------------------------------------
2
// LenMus Phonascus: The teacher of music
3
// Copyright (c) 2002-2011 LenMus project
5
// This program is free software; you can redistribute it and/or modify it under the
6
// terms of the GNU General Public License as published by the Free Software Foundation,
7
// either version 3 of the License, or (at your option) any later version.
9
// This program is distributed in the hope that it will be useful, but WITHOUT ANY
10
// WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
11
// PARTICULAR PURPOSE. See the GNU General Public License for more details.
13
// You should have received a copy of the GNU General Public License along with this
14
// program. If not, see <http://www.gnu.org/licenses/>.
16
// For any comment, suggestion or feature request, please contact the manager of
17
// the project at cecilios@users.sourceforge.net
19
//---------------------------------------------------------------------------------------
21
#ifndef __LENMUS_TEST_RUNNER_CLASS_H__ //to avoid nested includes
22
#define __LENMUS_TEST_RUNNER_CLASS_H__
26
#include <UnitTest++.h>
27
#include <TestReporter.h>
35
//a reporter for using a file stream
39
class MyTestReporter : public TestReporter
42
MyTestReporter(std::ofstream& outstream);
44
virtual void ReportTestStart(TestDetails const& test);
45
virtual void ReportFailure(TestDetails const& test, char const* failure);
46
virtual void ReportTestFinish(TestDetails const& test, float secondsElapsed);
47
virtual void ReportSummary(int totalTestCount, int failedTestCount, int failureCount, float secondsElapsed);
49
std::ofstream& m_outstream;
57
//---------------------------------------------------------------------------------------
61
MyTestRunner(wxWindow* parent);
73
#endif // __LENMUS_TEST_RUNNER_CLASS_H__