You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lokinet/test/net/test_ip_address.cpp

10 lines
189 B
C++

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