rapidcheck 0~1048-a5724ea-1 source package in Ubuntu

Changelog

rapidcheck (0~1048-a5724ea-1) unstable; urgency=medium

  * New upstream snapshot.
  * Fix FTBFS with gcc-13 (Closes: #1037835)

 -- Adam Borowski <email address hidden>  Thu, 15 Jun 2023 12:39:12 +0200

Upload details

Uploaded by:
Adam Borowski
Uploaded to:
Sid
Original maintainer:
Adam Borowski
Architectures:
any
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Oracular release universe misc
Noble release universe misc
Mantic release universe misc

Downloads

File Size SHA-256 Checksum
rapidcheck_0~1048-a5724ea-1.dsc 2.0 KiB 37b157187b62f772dfc4a246d4cc201b31dce7c0b00c7c7cbc0adb84ee4dd824
rapidcheck_0~1048-a5724ea.orig.tar.xz 138.1 KiB a56df6c2fc91ae1a49092666e8115e71801fc2976543b822a616561c8b49a4b7
rapidcheck_0~1048-a5724ea-1.debian.tar.xz 2.9 KiB 77db1ae977b44e9895222e0997f4293c4146e17b8e7e204bc10d5d95d646b387

No changes file available.

Binary packages built by this source

librapidcheck-dev: C++ framework for property based testing

 RapidCheck is a C++ framework for property based testing inspired by
 QuickCheck and other similar frameworks. In property based testing,
 you state facts about your code that given certain precondition should
 always be true. RapidCheck then generates random test data to try and
 find a case for which the property doesn't hold. If such a case is
 found, RapidCheck tries to find the smallest case (for some definition
 of smallest) for which the property is still false and then displays
 this as a counterexample. For example, if the input is an integer,
 RapidCheck tries to find the smallest integer for which the property is
 false.