url/test/unit/bnf/token.cpp
2021-09-14 07:46:35 -07:00

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