mirror of
https://github.com/zeromq/cppzmq.git
synced 2024-12-12 18:40:28 +01:00
9 lines
122 B
C++
9 lines
122 B
C++
|
#include "gtest/gtest.h"
|
||
|
|
||
|
TEST(example, add)
|
||
|
{
|
||
|
double res;
|
||
|
res = 1.0 + 2.0;
|
||
|
ASSERT_NEAR(res, 3.0, 1.0e-11);
|
||
|
}
|