mirror of
https://github.com/boostorg/url.git
synced 2025-05-09 17:33:52 +00:00
36 lines
635 B
C++
36 lines
635 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/bnf/token.hpp>
|
|
|
|
#include <boost/url/detail/test/test_suite.hpp>
|
|
#include "test_bnf.hpp"
|
|
|
|
namespace boost {
|
|
namespace urls {
|
|
namespace rfc {
|
|
|
|
class token_test
|
|
{
|
|
public:
|
|
void
|
|
run()
|
|
{
|
|
}
|
|
};
|
|
|
|
TEST_SUITE(
|
|
token_test,
|
|
"boost.url.token");
|
|
|
|
} // rfc
|
|
} // urls
|
|
} // boost
|