xmscore  1.0
Observer.t.h
Go to the documentation of this file.
1 #pragma once
2 #ifdef CXX_TEST
3 //------------------------------------------------------------------------------
8 //------------------------------------------------------------------------------
9 
10 // 3. Standard Library Headers
11 
12 // 4. External Library Headers
13 #include <cxxtest/TestSuite.h>
14 
15 // 5. Shared Headers
16 
17 // 6. Non-shared Headers
18 
19 class ObserverIntermediateTests : public CxxTest::TestSuite
20 {
21 public:
22 #ifndef CXXTEST4
23  virtual const CxxTest::TestGroup& group();
24 #endif
25  void testTimeRemaining();
26  void testMockObserver();
27 };
28 #endif
void testTimeRemaining()
tests the estimated time remaining
Definition: Observer.cpp:350
void testMockObserver()
[snip_test_Example_Observer]
Definition: Observer.cpp:364
virtual const CxxTest::TestGroup & group()
Defines the test group.
Definition: Observer.cpp:341
Tests for Observer.
Definition: Observer.t.h:19