boost 中的 单元测试 库

王朝other·作者佚名  2006-01-09
窄屏简体版  字體: |||超大  

#include <boost/test/unit_test.hpp>

using boost::unit_test::test_suite;

void force_division_by_zero()

{

// unit test framework can catch operating system signals

BOOST_CHECKPOINT("About to force division by zero!");

int i = 1, j = 0;

i = i / j;

}

void infinite_loop()

{

// unit test framework can break infinite loops by timeout

#ifdef __unix // don't have timeout on other platforms

BOOST_CHECKPOINT("About to enter an infinite loop!");

while(1);

#else

BOOST_MESSAGE( "Timeout support is not implemented on your platform" );

#endif

}

test_suite*

init_unit_test_suite( int argc, char * argv[] ) {

test_suite* test= BOOST_TEST_SUITE( "Unit test example 2" );

test->add( BOOST_TEST_CASE( &force_division_by_zero ) );

test->add( BOOST_TEST_CASE( &infinite_loop ), 0, /* timeout */ 2 );

return test;

}

// EOF

输出:

Running 2 test cases...

Exception in "force_division_by_zero": signal: SIGFPE (arithmetic exception)

t7.cpp(7): last checkpoint: About to force division by zero!

Exception in "infinite_loop": signal: SIGALRM (timeout while executing function)

t7.cpp(16): last checkpoint: About to enter an infinite loop!

*** errors detected in test suite "Unit test example 2"; see standard output for

details

 
 
 
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。
 
 
© 2005- 王朝網路 版權所有 導航