|
Namespaces |
namespace | acdk::tools::aunit |
| unit-test framework
|
Compounds |
class | CfgScriptTestCase |
| execute one CfgScript script as test case. More...
|
class | CfgScriptTestSuite |
| execute all CfgScripts in a given directory - including sub directories if recursive is true - which ends with _Test.csf More...
|
class | TestCase |
| A single test case. More...
|
class | TestConsoleListener |
| Listen to test and prints to console. More...
|
class | TestDebuggerListener |
| Listen to test and prints to console. More...
|
class | TestException |
| This exception is used to indicate failed tests. More...
|
class | TestFailure |
| represents a failure More...
|
class | TestHtmlReport |
| Writes an Report after running the tests. More...
|
class | TestListener |
| Listen to a executing test. More...
|
class | TestReport |
| Writes an Report after running the tests. More...
|
class | TestResult |
| represents a result of a test More...
|
class | TestResultEntry |
| holds results of one Test More...
|
class | TestSuite |
| A TestSuite is a collection of TestCases. More...
|
class | TestTextReport |
| Writes an text Report after running the tests. More...
|
Defines |
#define | BEGIN_DECLARE_TEST(ClassName) |
| used to define C++ unit test.
|
#define | DECLARE_TEST(methodName) void methodName(); |
| used to define C++ unit test.
|
#define | END_DECLARE_TEST(ClassName) }; |
| used to define C++ unit test.
|
#define | AUTOEXEC_TEST_SUITE(className) static ::acdk::tools::aunit::TestRunnerStaticAdder t( new className(#className) ); |
| used to define C++ unit test.
|
#define | BEGIN_DEFINE_TEST(ClassName) |
| used to define C++ unit test.
|
#define | END_DEFINE_TEST(ClassName) |
| used to define C++ unit test.
|
#define | ADD_TEST(ClassName, methodName) |
| used to define C++ unit test.
|
#define | ACDK_TEST_MAIN |
| used to define C++ unit test.
|
#define | testAssert(condition) ::acdk::tools::aunit::TestCase::activeTest->assertImplementation ((condition),(#condition), __LINE__, __FILE__) |
| Test a test condition.
|
#define | testAssertUc(condition) ::acdk::tools::aunit::TestCase::activeTest->assertImplementation ((condition),RString((_US(#condition))), __LINE__, __FILE__) |
| Test a test condition.
|
#define | testAssertComment(condition, comment) ::acdk::tools::aunit::TestCase::activeTest->assertImplementation ((condition),(comment), __LINE__, __FILE__) |
| Test a test condition.
|