Problem: project files do not follow clang-format

This commit is contained in:
Pawel Kurdybacha
2018-05-11 20:29:15 +01:00
parent 7732903177
commit 5031278f18
9 changed files with 1319 additions and 1252 deletions

View File

@@ -1,15 +1,15 @@
#include <gtest/gtest.h>
#include <zmq.hpp>
TEST(context, create_default_destroy)
TEST (context, create_default_destroy)
{
zmq::context_t context;
}
TEST(context, create_close)
TEST (context, create_close)
{
zmq::context_t context;
context.close();
ASSERT_EQ(NULL, (void*)context);
context.close ();
ASSERT_EQ (NULL, (void *) context);
}