2
0
mirror of https://github.com/boostorg/url.git synced 2026-02-23 04:02:11 +00:00
Files
url/test/unit/params_encoded_base.cpp
Vinnie Falco d5b001999c refactor params
fix #475, fix #470, fix #456, fix #455
2022-09-03 13:08:48 -07:00

35 lines
723 B
C++

//
// Copyright (c) 2019 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 <boost/url/params_encoded_base.hpp>
#include <boost/url/params_const_encoded_view.hpp>
#include <boost/url/url.hpp>
#include <boost/url/url_view.hpp>
#include "test_suite.hpp"
namespace boost {
namespace urls {
struct params_encoded_base_test
{
void
run()
{
}
};
TEST_SUITE(
params_encoded_base_test,
"boost.url.params_encoded_base");
} // urls
} // boost