#define CATCH_CONFIG_MAIN // This tells Catch to provide a main() - only do this in one cpp file #include "catch.hpp" #include "dnsmessages.hh" #include "dns-storage.hh" using namespace std; TEST_CASE("DNSLabel equality", "[dnslabel]") { DNSLabel a("www"), b("WWW"); REQUIRE(a==b); REQUIRE(!(a