Add (optional) unit test infrastructure
[libftdi] / test / baudrate.cpp
CommitLineData
a87a0712
TJ
1/**@file
2@brief Test baudrate calculator code
3
4@author Thomas Jarosch
5*/
6
7/***************************************************************************
8 * *
9 * This program is free software; you can redistribute it and/or modify *
10 * it under the terms of the GNU Lesser General Public License *
11 * version 2.1 as published by the Free Software Foundation; *
12 * *
13 ***************************************************************************/
14
15#define BOOST_TEST_DYN_LINK
16#include <boost/test/unit_test.hpp>
17
18BOOST_AUTO_TEST_SUITE(Baudrate)
19
20BOOST_AUTO_TEST_CASE(Simple)
21{
22}
23
24BOOST_AUTO_TEST_SUITE_END()