// // 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/CPPAlliance/url // // Test that header file is self-contained. #include #include "test_suite.hpp" #include namespace boost { namespace urls { struct recycled_ptr_test { void testPtr() { { recycled_ptr sp; sp->reserve(1000); BOOST_TEST(sp->capacity() >= 1000); } { recycled_ptr sp; BOOST_TEST(sp->capacity() >= 1000); } } void run() { } }; TEST_SUITE( recycled_ptr_test, "boost.url.recycled_ptr"); } // urls } // boost