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

File Information

File Size
14,279 bytes
MD5
ca7f6c3da3f3dbbb6af0931c966cd660

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);
}