Try uploading in-development versions of v3 as testing packages

This commit is contained in:
Martin Hořeňovský
2020-01-25 09:52:13 +01:00
parent d0257fc1ff
commit 2e1ce37faa
4 changed files with 15 additions and 17 deletions

View File

@@ -1,6 +1,4 @@
#define CATCH_CONFIG_MAIN
#include <catch2/catch.hpp>
#include <catch2/catch_test_macros.hpp>
int Factorial( int number ) {
return number <= 1 ? 1 : Factorial( number - 1 ) * number;