| 7291 | } |
| 7292 | |
| 7293 | void registerTestCase |
| 7294 | ( ITestCase* testCase, |
| 7295 | char const* classOrQualifiedMethodName, |
| 7296 | NameAndDesc const& nameAndDesc, |
| 7297 | SourceLineInfo const& lineInfo ) { |
| 7298 | |
| 7299 | getMutableRegistryHub().registerTest |
| 7300 | ( makeTestCase |
| 7301 | ( testCase, |
| 7302 | extractClassName( classOrQualifiedMethodName ), |
| 7303 | nameAndDesc.name, |
| 7304 | nameAndDesc.description, |
| 7305 | lineInfo ) ); |
| 7306 | } |
| 7307 | void registerTestCaseFunction |
| 7308 | ( TestFunction function, |
| 7309 | SourceLineInfo const& lineInfo, |
no test coverage detected