testsuite.h
来自「A C++ class library for scientific compu」· C头文件 代码 · 共 16 行
H
16 行
#ifndef TESTSUITE_H#define TESTSUITE_H#ifdef BZ_DEBUG_H #error <testsuite/testsuite.h> must be included before any other header files.#endif#define BZ_TESTSUITE#include <assert.h>#include <blitz/blitz.h>#define BZTEST(x) { if(!(x)) { cout << "Test failed: " << __FILE__ << " line " << __LINE__ << endl; exit(1); } } #endif // TESTSUITE_H
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?