lokinet/test/net/test_ip_address.cpp

10 lines
183 B
C++
Raw Normal View History

2020-05-08 17:23:21 +00:00
#include <net/ip_address.hpp>
#include <catch2/catch.hpp>
TEST_CASE("IpAddress empty constructor", "[IpAdress]")
{
llarp::IpAddress address;
CHECK(address.isEmpty() == true);
}