00001 /*************** <auto-copyright.pl BEGIN do not edit this line> ************** 00002 * 00003 * VR Juggler is (C) Copyright 1998-2005 by Iowa State University 00004 * 00005 * Original Authors: 00006 * Allen Bierbaum, Christopher Just, 00007 * Patrick Hartling, Kevin Meinert, 00008 * Carolina Cruz-Neira, Albert Baker 00009 * 00010 * This library is free software; you can redistribute it and/or 00011 * modify it under the terms of the GNU Library General Public 00012 * License as published by the Free Software Foundation; either 00013 * version 2 of the License, or (at your option) any later version. 00014 * 00015 * This library is distributed in the hope that it will be useful, 00016 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00017 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00018 * Library General Public License for more details. 00019 * 00020 * You should have received a copy of the GNU Library General Public 00021 * License along with this library; if not, write to the 00022 * Free Software Foundation, Inc., 59 Temple Place - Suite 330, 00023 * Boston, MA 02111-1307, USA. 00024 * 00025 * ----------------------------------------------------------------- 00026 * File: $RCSfile$ 00027 * Date modified: $Date: 2005-01-16 17:51:42 -0600 (Sun, 16 Jan 2005) $ 00028 * Version: $Revision: 16627 $ 00029 * ----------------------------------------------------------------- 00030 * 00031 *************** <auto-copyright.pl END do not edit this line> ***************/ 00032 00033 #ifndef _VRJ_TEST_ASSERTER_H 00034 #define _VRJ_TEST_ASSERTER_H 00035 00036 #include <vrj/Test/TestFailure.h> 00037 #include <vrj/Test/Test.h> 00038 #include <vrj/Test/Message.h> 00039 00040 namespace vrj { 00041 namespace test 00042 { 00043 00044 namespace Asserter 00045 { 00047 void fail(vrj::test::Test* test, vrj::test::Message message, 00048 const std::string& filename, const int linenum) 00049 { 00050 throw vrj::test::TestFailure(test, message, filename, linenum); 00051 } 00052 00057 void failIf(const bool shouldFail, vrj::test::Test* test, 00058 vrj::test::Message message, const std::string& filename, 00059 const int linenum) 00060 { 00061 if( shouldFail ) 00062 { 00063 fail(test, message, filename, linenum); 00064 } 00065 } 00066 } 00067 00068 } } 00069 00070 00074 #define VRJTEST_ASSERT(condition) \ 00075 ( vrj::test::Asserter::failIf( !(condition), this, \ 00076 vrj::test::Message( "assertion failed", \ 00077 "Expression: " #condition), \ 00078 __FILE__, __LINE__ ) ) 00079 00080 00081 #endif 00082
1.5.1