Rasmus Källqvist
Rasmus Källqvist
While not explicitly stated as being a supported compiler, the Microsoft Visual C++ compiler should fall under "standard conformant C++17 compiler". Trying to compile gives an error on C++17 checking:...
I've used RapidCheck in a small project and enjoyed it so far, but I've found myself in cases where I want to run property assertions inside of a kind of...
It would be convenient to be able to immediately fail a test ```C if (some_condition) { FAIL_INFO("Some specific unexpected situation happened!"); } ``` Google Test has: ```C FAIL(); // fatal...
It would be very useful to have an assertion that checks two arrays to be equal, and that has useful printouts when the arrays are _not_ equal. e.g. ``` [1,...
Port the `--gtest_break_on_failure` option to RK Test. Consider inlining this header file for portable debugbreak functionality https://github.com/scottt/debugbreak/blob/master/debugbreak.h
Hi! Very cool to see this website. It's slick and easy to use. However, it sometimes give goals that can only be feasibly verified on Java Edition, such as anything...
I use Moxfield to build decks in the Old School format, where there are legality restrictions based on the printing of the card. When building old school decks, it would...
Is it possible to access the value captured for a given zone at the end of a frame? The scenario here is running automated tests, and it would be useful...