1 // 2 // basic_serial_port.cpp 3 // ~~~~~~~~~~~~~~~~~~~~~ 4 // 5 // Copyright (c) 2003-2020 Christopher M. Kohlhoff (chris at kohlhoff dot com) 6 // Copyright (c) 2008 Rep Invariant Systems, Inc. (info@repinvariant.com) 7 // 8 // Distributed under the Boost Software License, Version 1.0. (See accompanying 9 // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 10 // 11 12 // Disable autolinking for unit tests. 13 #if !defined(BOOST_ALL_NO_LIB) 14 #define BOOST_ALL_NO_LIB 1 15 #endif // !defined(BOOST_ALL_NO_LIB) 16 17 // Test that header file is self-contained. 18 #include <boost/asio/basic_serial_port.hpp> 19 20 #include "unit_test.hpp" 21 22 BOOST_ASIO_TEST_SUITE 23 ( 24 "basic_serial_port", 25 BOOST_ASIO_TEST_CASE(null_test) 26 ) 27