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

File Information

File Size
454,559 bytes
MD5
b2db70ff8d977f4a3cd5a7a136a76737

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