| 18 | namespace database { |
| 19 | |
| 20 | TestDatabaseWrapper::TestDatabaseWrapper(DatabasePointerAuthority const* databasePointerAuthority) : DatabaseWrapper(databasePointerAuthority) { |
| 21 | m_connectionType = Qt::ConnectionType::DirectConnection; |
| 22 | } |
| 23 | |
| 24 | TestDatabaseWrapper::TestDatabaseWrapper(TestDatabaseWrapper const& other) : DatabaseWrapper(other) { |
| 25 | m_connectionType = Qt::ConnectionType::DirectConnection; |
nothing calls this directly
no outgoing calls
no test coverage detected