| 65 | // --------------------------------------------------------------------------- |
| 66 | |
| 67 | TEST(factory, databasecontext_create) { |
| 68 | DatabaseContext::create(); |
| 69 | #ifndef _WIN32 |
| 70 | // For some reason, no exception is thrown on AppVeyor Windows |
| 71 | EXPECT_THROW(DatabaseContext::create("/i/do_not/exist"), FactoryException); |
| 72 | #endif |
| 73 | } |
| 74 | |
| 75 | // --------------------------------------------------------------------------- |
| 76 |
nothing calls this directly
no test coverage detected