mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-03 23:15:52 +00:00
10 lines
183 B
C++
10 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);
|
||
|
}
|