1
1
Fork 0
mirror of https://github.com/oxen-io/lokinet synced 2023-12-14 06:53:00 +01:00
lokinet/test/net/test_ip_address.cpp
2020-05-08 11:23:21 -06:00

9 lines
183 B
C++

#include <net/ip_address.hpp>
#include <catch2/catch.hpp>
TEST_CASE("IpAddress empty constructor", "[IpAdress]")
{
llarp::IpAddress address;
CHECK(address.isEmpty() == true);
}