Verify information from the ModuleInfo struct
| 98 | |
| 99 | // Verify information from the ModuleInfo struct |
| 100 | void frame005a(ModuleContext* mc) |
| 101 | { |
| 102 | Module* m = mc->GetModule(); |
| 103 | |
| 104 | // check expected headers |
| 105 | |
| 106 | US_TEST_CONDITION("main" == m->GetName(), "Test module name") |
| 107 | US_TEST_CONDITION(ModuleVersion(0,1,0) == m->GetVersion(), "Test test driver module version") |
| 108 | US_TEST_CONDITION(ModuleVersion(0, 0, 0) == ModuleRegistry::GetModule(1)->GetVersion(), "Test CppMicroServices version") |
| 109 | } |
| 110 | |
| 111 | // Get context id, location and status of the module |
| 112 | void frame010a(ModuleContext* mc) |
no test coverage detected