CppUnit project page FAQ

ProtectorContext.h
Go to the documentation of this file.
1 #ifndef CPPUNIT_PROTECTORCONTEXT_H
2 #define CPPUNIT_PROTECTORCONTEXT_H
3 
4 #include <cppunit/Portability.h>
5 #include <string>
6 
8 
9 class Test;
10 class TestResult;
11 
12 
18 {
19 public:
21  TestResult *result,
22  const std::string &shortDescription )
23  : m_test( test )
24  , m_result( result )
25  , m_shortDescription( shortDescription )
26  {
27  }
28 
31  std::string m_shortDescription;
32 };
33 
34 
36 
37 #endif // CPPUNIT_PROTECTORCONTEXT_H
38 

Send comments to:
CppUnit Developers