source: XMLIO_V2/external/src/BLITZ++/testsuite.h @ 80

Last change on this file since 80 was 80, checked in by ymipsl, 14 years ago

ajout lib externe

  • Property svn:eol-style set to native
File size: 355 bytes
Line 
1#ifndef TESTSUITE_H
2#define TESTSUITE_H
3
4#ifdef BZ_DEBUG_H
5 #error <testsuite/testsuite.h> must be included before any other header files.
6#endif
7
8#define BZ_TESTSUITE
9
10#include <assert.h>
11#include <blitz/blitz.h>
12
13#define BZTEST(x)    { if(!(x)) { cout << "Test failed: " << __FILE__ << " line " << __LINE__ << endl; exit(1); } }
14 
15#endif // TESTSUITE_H
Note: See TracBrowser for help on using the repository browser.