diff --git a/tests/net/pop3/POP3TestUtils.hpp b/tests/net/pop3/POP3TestUtils.hpp index 1c6e8935..beb202b8 100644 --- a/tests/net/pop3/POP3TestUtils.hpp +++ b/tests/net/pop3/POP3TestUtils.hpp @@ -25,13 +25,25 @@ #include "vmime/net/pop3/POP3Store.hpp" +class POP3TestStore : public vmime::net::pop3::POP3Store +{ +public: + + POP3TestStore() + : POP3Store(vmime::make_shared (), + vmime::shared_ptr ()) + { + } +}; + + class POP3ConnectionTest : public vmime::net::pop3::POP3Connection { public: POP3ConnectionTest(vmime::shared_ptr socket, vmime::shared_ptr timeoutHandler) - : POP3Connection(vmime::shared_ptr (), + : POP3Connection(vmime::make_shared (), vmime::shared_ptr ()), m_socket(socket), m_timeoutHandler(timeoutHandler) {