diff options
Diffstat (limited to 'Modules/FindCxxTest.cmake')
-rw-r--r-- | Modules/FindCxxTest.cmake | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Modules/FindCxxTest.cmake b/Modules/FindCxxTest.cmake index a4d150493..48de64afd 100644 --- a/Modules/FindCxxTest.cmake +++ b/Modules/FindCxxTest.cmake @@ -49,7 +49,7 @@ # input_files_to_testgen The list of header files containing the # CxxTest::TestSuite's to be included in # this runner -# +# # #============== # Example Usage: # @@ -67,13 +67,13 @@ # 1. Invoke the testgen executable to autogenerate foo_test.cc in the # binary tree from "foo_test.h" in the current source directory. # 2. Create an executable and test called unittest_foo. -# +# # #============= # Example foo_test.h: # # #include <cxxtest/TestSuite.h> -# -# class MyTestSuite : public CxxTest::TestSuite +# +# class MyTestSuite : public CxxTest::TestSuite # { # public: # void testAddition( void ) @@ -147,7 +147,7 @@ macro(CXXTEST_ADD_TEST _cxxtest_testname _cxxtest_outfname) add_test(${_cxxtest_testname} ${CMAKE_CURRENT_BINARY_DIR}/${_cxxtest_testname}) endif() -endmacro(CXXTEST_ADD_TEST) +endmacro() #============================================================= # main() |