mirror of
https://github.com/oxen-io/lokinet
synced 2023-12-14 06:53:00 +01:00
9 lines
183 B
C++
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);
|
|
}
|