src/test/test_tools.h
changeset 774 4297098d9677
parent 721 1df9b762269b
child 825 738abd9d1262
     1.1 --- a/src/test/test_tools.h	Wed Aug 25 18:55:57 2004 +0000
     1.2 +++ b/src/test/test_tools.h	Mon Aug 30 12:01:47 2004 +0000
     1.3 @@ -20,6 +20,8 @@
     1.4  ///\code check(0==1,"This is obviously false.");\endcode will
     1.5  ///print this (and then exits).
     1.6  ///\verbatim graph_test.cc:123: error: This is obviously false. \endverbatim
     1.7 +///
     1.8 +///\todo It should be in \c error.h
     1.9  #define check(rc, msg) \
    1.10    if(!(rc)) { \
    1.11      std::cerr << __FILE__ ":" << __LINE__ << ": error: " << msg << std::endl; \