mirror of
https://github.com/moses-smt/mosesdecoder.git
synced 2024-12-27 22:14:57 +03:00
9 lines
200 B
C++
9 lines
200 B
C++
/* Program to verify compilation against the unit test framework */
|
|
|
|
#define BOOST_TEST_MODULE EmptyTest
|
|
#include <boost/test/unit_test.hpp>
|
|
|
|
namespace {
|
|
BOOST_AUTO_TEST_CASE(Empty) {}
|
|
} // namespace
|