| 13 | struct RuntimeLoadedLib : public SomeLibrary { |
| 14 | |
| 15 | RuntimeLoadedLib() { |
| 16 | LOG(INFO) << "Library was created"; |
| 17 | LOGF(INFO, "Ready for testing"); |
| 18 | } |
| 19 | |
| 20 | ~RuntimeLoadedLib() { |
| 21 | LOG(G3LOG_DEBUG) << "Library destroyed"; |
nothing calls this directly
no outgoing calls
no test coverage detected