cppzmq/tests/context.cpp
Pawel Kurdybacha ae15964907 Problem: Dependency on googletest framework
Currently cppzmq as relatively simple and header only library depends on rather
complex unit test framework googletest.
Current issues:
- Googletest requires downloading and building it every time on travis
as cache support is limited there
- Googletest build is signifficant with comparison to cppzmq unittests
total runtime

Solution: Port existing tests to Catch - header only C++ framework and
gain ~20% build speed up on travis.

Why Catch?
It is well know C++ header only testing framework. It works well, it is
being kept up to date and maintainers seem to pay attention to
community's comments and issues.
We can not use Catch2 currently as we still support pre-C++11 compilers.
2018-10-17 15:22:07 +01:00

15 lines
288 B
C++

#include <catch.hpp>
#include <zmq.hpp>
TEST_CASE("context construct default and destroy", "[context]")
{
zmq::context_t context;
}
TEST_CASE("context create, close and destroy", "[context]")
{
zmq::context_t context;
context.close();
CHECK(NULL == (void *) context);
}