Problem: no build/tests with DRAFT

Solution: added initial test case
This commit is contained in:
Simon Giesecke
2018-04-03 16:30:58 +02:00
parent 68cbb9e57c
commit cc5f4050dc
5 changed files with 32 additions and 3 deletions

9
tests/poller.cpp Normal file
View File

@@ -0,0 +1,9 @@
#include <gtest/gtest.h>
#include <zmq.hpp>
#if defined(ZMQ_CPP11) && defined(ZMQ_BUILD_DRAFT_API)
TEST(poller, create_destroy)
{
zmq::poller_t context;
}
#endif