#include <TestCase.h>
Inheritance diagram for vrj::test::TestCase:


Public Methods | |
| TestCase (std::string name) | |
| virtual | ~TestCase () |
| virtual void | setApp (vrj::App *app) |
| Set the application that we are testing To do anything meaningful you will probably have to dynamic_cast the app to you application type. More... | |
| virtual std::string | getName () |
| Get the name of the test. More... | |
Protected Attributes | |
| vrj::App * | mApp |
| Pointer to the application to be testing. More... | |
| std::string | mName |
| Name of the test. More... | |
Definition at line 53 of file TestCase.h.
|
|
Definition at line 56 of file TestCase.h. References mName.
00057 : mName(name) 00058 {;} |
|
|
Definition at line 60 of file TestCase.h.
00061 {;}
|
|
|
Set the application that we are testing To do anything meaningful you will probably have to dynamic_cast the app to you application type.
Implements vrj::test::Test. Definition at line 63 of file TestCase.h. References mApp.
00064 { mApp = app; }
|
|
|
Get the name of the test.
Implements vrj::test::Test. Definition at line 66 of file TestCase.h. References mName.
00067 { return mName; }
|
|
|
Pointer to the application to be testing.
Definition at line 70 of file TestCase.h. Referenced by setApp. |
|
|
Name of the test.
Definition at line 71 of file TestCase.h. |
1.2.14 written by Dimitri van Heesch,
© 1997-2002