Introduce Catch's own RNG based on the PCG family of RNGs

In the future, we will also want to introduce our own
`uniform_int_distribution` and `uniform_real_distribution` to get
repeatable test runs across different platforms.
This commit is contained in:
Martin Hořeňovský 2019-10-06 21:47:54 +02:00
parent 319cb9e1da
commit 535da5c513
No known key found for this signature in database
GPG key ID: DE48307B8B0D381A
14 changed files with 565 additions and 23 deletions

View file

@ -11,6 +11,7 @@
#include "catch_enforce.h"
#include "catch_interfaces_registry_hub.h"
#include "catch_random_number_generator.h"
#include "catch_run_context.h"
#include "catch_string_manip.h"
#include "catch_test_case_info.h"