mirror of
https://github.com/boostorg/test.git
synced 2026-01-22 05:42:35 +00:00
9 lines
180 B
C++
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 );
|
|
}
|
|
|