General Utility Library for C++14  2.11
Unit Tests

GUL uses the Catch2 test framework for its unit tests.

It bundles all of its functionality in a single header file. For convenience, the GUL-internal version of this header can be accessed via:

#include "gul14/catch.h"
// Your unit tests here

Please refer to https://github.com/catchorg/Catch2/blob/master/docs/tutorial.md for an introduction to Catch2.

Note
Please note that unlike all other include files provided with GUL, catch.h is not automatically included by the default include directive:
#include "gul14/gul.h"
// Catch2 is not included!
Main include file for the General Utility Library.