CppUnit project page FAQ

TestResultCollector.h
Go to the documentation of this file.
1 #ifndef CPPUNIT_TESTRESULTCOLLECTOR_H
2 #define CPPUNIT_TESTRESULTCOLLECTOR_H
3 
4 #include <cppunit/Portability.h>
5 
6 #if CPPUNIT_NEED_DLL_DECL
7 #pragma warning( push )
8 #pragma warning( disable: 4251 4660 ) // X needs to have dll-interface to be used by clients of class Z
9 #endif
10 
13 
14 
16 
17 #if CPPUNIT_NEED_DLL_DECL
18 // template class CPPUNIT_API std::deque<TestFailure *>;
19 // template class CPPUNIT_API std::deque<Test *>;
20 #endif
21 
22 
37 {
38 public:
39  typedef CppUnitDeque<TestFailure *> TestFailures;
40  typedef CppUnitDeque<Test *> Tests;
41 
42 
45  TestResultCollector( SynchronizationObject *syncObject = 0 );
46 
48  virtual ~TestResultCollector();
49 
50  void startTest( Test *test );
51  void addFailure( const TestFailure &failure );
52 
53  virtual void reset();
54 
55  virtual int runTests() const;
56  virtual int testErrors() const;
57  virtual int testFailures() const;
58  virtual int testFailuresTotal() const;
59 
60  virtual const TestFailures& failures() const;
61  virtual const Tests &tests() const;
62 
63 protected:
64  void freeFailures();
65 
69 
70 private:
73 
75  void operator =( const TestResultCollector &copy );
76 };
77 
78 
79 
81 
82 #if CPPUNIT_NEED_DLL_DECL
83 #pragma warning( pop )
84 #endif
85 
86 
87 #endif // CPPUNIT_TESTRESULTCOLLECTOR_H

Send comments to:
CppUnit Developers