Download of libunittest-3.3.0.tar.gz (libunittest-3.3.0.tar.gz ( external link: SF.net): 33,429 bytes) will begin shortly. If not so, click link on the left.

File Information

File Size
33,429 bytes
MD5
2ad64d283276ce42eb092708183441c4

Projeto Descrição

libunittest is a portable C++ library for unit testing. By relying on the C++11 standard, heavy use of templates, and minimal use of macros, a portable, feature-rich, and easy-to-use library has been developed. Supported compilers are g++ (≥4.6), clang++ (≥3.2), and Visual C++ (≥2013). A minimal example:

#include <libunittest/all.hpp>
using namespace unittest::assertions;

TEST(test_value_is_true)
{
assert_true(true);
}