unit_test.hpp
来自「Boost provides free peer-reviewed portab」· HPP 代码 · 共 50 行
HPP
50 行
//// unit_test.hpp// ~~~~~~~~~~~~~//// Copyright (c) 2003-2008 Christopher M. Kohlhoff (chris at kohlhoff dot com)//// Distributed under the Boost Software License, Version 1.0. (See accompanying// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)//#ifndef UNIT_TEST_HPP#define UNIT_TEST_HPP#include <boost/config.hpp>#if defined(__sun)# include <stdlib.h> // Needed for lrand48.#endif // defined(__sun)#if defined(__BORLANDC__)// Prevent use of intrinsic for strcmp.# include <cstring># undef strcmp // Suppress error about condition always being true.# pragma option -w-ccc#endif // defined(__BORLANDC__)#if defined(BOOST_MSVC)# pragma warning (push)# pragma warning (disable:4244)# pragma warning (disable:4702)#endif // defined(BOOST_MSVC)#include <boost/test/unit_test.hpp>#include <boost/test/included/unit_test_framework.hpp>using boost::unit_test::test_suite;#if defined(BOOST_MSVC)# pragma warning (pop)#endif // defined(BOOST_MSVC)inline void null_test(){}#endif // UNIT_TEST_HPP
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?