自动测试 提供自动测试和匹配器的C ++测试框架。 例子 # include < auto> TEST_SUITE (ExampleTests) { TEST ( 0 , shouldRunThisTestAutomatically) { ASSERT_TRUE ( 1 == 1 ); } } int main () { auto_test::run_tests (); } 输出: Running test suites Running suite 'ExampleTests' #0: shouldRunThisTestAutomatically passed All tests passed in suite 'ExampleTests' All suites passed 问题跟踪 主要问题跟踪位于 可在获