diff options
Diffstat (limited to 'tests/test-whiteboard.cpp')
-rw-r--r-- | tests/test-whiteboard.cpp | 26 |
1 files changed, 24 insertions, 2 deletions
diff --git a/tests/test-whiteboard.cpp b/tests/test-whiteboard.cpp index 6fe476d..2c9d37b 100644 --- a/tests/test-whiteboard.cpp +++ b/tests/test-whiteboard.cpp @@ -14,10 +14,32 @@ namespace fs = std::filesystem; namespace { - const std::string testConfigFilename{"./test.conf"}; - const std::string testDbFilename{"./whiteboard.db3"}; + const fs::path webserverConfigFilename{"./webserver.conf"}; + const fs::path testConfigFilename{"./whiteboard.conf"}; + const fs::path testDbFilename{"./whiteboard.db3"}; } +class Webserver +{ +public: + Webserver() + { + } + + ~Webserver() + { + stop(); + } + + void runInBackground() + { + } + + void stop() + { + } +}; + class WhiteboardTest: public ::testing::Test { protected: |