mirror of
https://github.com/zeromq/cppzmq.git
synced 2025-10-20 14:02:42 +02:00
Problem: project files do not follow clang-format
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
Reference in New Issue
Block a user