Salome HOME
e2586dcea120ab716ee2aeba88ce92a78fc345d9
[modules/hydro.git] / src / HYDRO_tests / TestLib_Listener.cxx
1 // Copyright (C) 2014-2015  EDF-R&D
2 // This library is free software; you can redistribute it and/or
3 // modify it under the terms of the GNU Lesser General Public
4 // License as published by the Free Software Foundation; either
5 // version 2.1 of the License, or (at your option) any later version.
6 //
7 // This library is distributed in the hope that it will be useful,
8 // but WITHOUT ANY WARRANTY; without even the implied warranty of
9 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
10 // Lesser General Public License for more details.
11 //
12 // You should have received a copy of the GNU Lesser General Public
13 // License along with this library; if not, write to the Free Software
14 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
15 //
16 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
17 //
18
19 #include <TestLib_Listener.h>
20 #include <cppunit/Test.h>
21 #include <iostream>
22
23 /**
24   \brief Constructor
25 */
26 TestLib_Listener::TestLib_Listener()
27 {
28 }
29
30 /**
31   \brief Destructor
32 */
33 TestLib_Listener::~TestLib_Listener()
34 {
35 }
36
37 /**
38   \brief Clear the internal state of the listener
39 */
40 void TestLib_Listener::Clear()
41 {
42 }
43
44 /**
45   Handler for test start
46   @param theTest the started tests
47 */
48 void TestLib_Listener::startTest( CppUnit::Test* theTest )
49 {
50   std::string aName;
51   if( theTest )
52     aName = theTest->getName();
53
54   std::cout << aName << "...";
55 }
56
57 /**
58   Handler for test finish
59   @param theTest the finished tests
60 */
61 void TestLib_Listener::endTest( CppUnit::Test* theTest )
62 {
63   std::cout << std::endl;
64 }
65
66 /**
67   Handler for test suite start
68   @param theTest the started test suite
69 */
70 void TestLib_Listener::startSuite( CppUnit::Test* theTest )
71 {
72 }
73
74 /**
75   Handler for test suite finish
76   @param theTest the finished test suite
77 */
78 void TestLib_Listener::endSuite( CppUnit::Test* theTest )
79 {
80 }
81
82 /**
83   Handler for test failure
84   @param theFailure the failure information
85 */
86 void TestLib_Listener::addFailure( const CppUnit::TestFailure& theFailure )
87 {
88 }
89