2
0
mirror of https://github.com/boostorg/test.git synced 2026-01-22 05:42:35 +00:00
Files
test/example/unit_test_example_13.cpp
Gennadiy Rozental 81e8aa2fdb fix in examples
[SVN r57994]
2009-11-28 10:22:24 +00:00

9 lines
180 B
C++

#define BOOST_TEST_MODULE system call test example
#include <boost/test/included/unit_test.hpp>
BOOST_AUTO_TEST_CASE( broken_test )
{
BOOST_CHECK_EQUAL( ::system("ls"), 0 );
}