mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-10-31 09:20:21 +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);
|
|
}
|