From: gidden Date: Sun, 21 Apr 2013 18:50:22 +0000 (-0500) Subject: added a note about google test and ctest. X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=e7090728a81175e56624201ca107681cc94fc46b;p=swc-testing-nose.git added a note about google test and ctest. --- diff --git a/python/testing/Readme.md b/python/testing/Readme.md index 8d53b87..f421bf7 100644 --- a/python/testing/Readme.md +++ b/python/testing/Readme.md @@ -276,10 +276,12 @@ teardown() # Nose: A Python Testing Framework -The testing framework we'll discuss today is called nose. However, there -are several other testing frameworks available in most language. Most -notably there is [JUnit](http://www.junit.org/) in Java which can -arguably attributed to inventing the testing framework. +The testing framework we'll discuss today is called nose. However, there are +several other testing frameworks available in most language. Most notably there +is [JUnit](http://www.junit.org/) in Java which can arguably attributed to +inventing the testing framework. Google also provides a [test +framework](code.google.com/p/googletest/) for C++ applications (note, there's +also [CTest](http://cmake.org/Wiki/CMake/Testing_With_CTest)). ## Where do nose tests live?