Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/ode/ode-0.9/tests/CppTestHarness/TypedTestLauncher.h @ 216

Last change on this file since 216 was 216, checked in by mathiask, 17 years ago

[Physik] add ode-0.9

File size: 388 bytes
Line 
1#ifndef TYPED_TEST_CREATOR_H
2#define TYPED_TEST_CREATOR_H
3
4#include "TestLauncher.h"
5
6namespace CppTestHarness
7{
8
9template< typename TestClass >
10class TypedTestLauncher : public TestLauncher
11{
12public:
13        TypedTestLauncher(TestLauncher** listHead)
14                : TestLauncher(listHead)
15        {
16        }
17
18        virtual void Launch(TestResults& testResults_) const 
19        {
20                TestClass().Run(testResults_);
21        }
22};
23
24}
25
26#endif
27
Note: See TracBrowser for help on using the repository browser.