// // Copyright (c) 2022 Vinnie Falco (vinnie.falco@gmail.com) // // Distributed under the Boost Software License, Version 1.0. (See accompanying // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) // // Official repository: https://github.com/boostorg/url // // Test that header file is self-contained. #include #include "test_rule.hpp" namespace boost { namespace urls { struct ipv4_address_rule_test { void run() { // javadoc { system::result< ipv4_address > rv = grammar::parse( "192.168.0.1", ipv4_address_rule ); (void)rv; } } }; TEST_SUITE( ipv4_address_rule_test, "boost.url.host_ipv4_address_rule"); } // urls } // boost