Move the tests to catch2 so I can get tap output for the game.
This commit is contained in:
parent
1fb99618bf
commit
52b59d38ad
5 changed files with 16 additions and 16 deletions
|
@ -1,5 +1,4 @@
|
|||
#define DOCTEST_CONFIG_IMPLEMENT_WITH_MAIN
|
||||
#include <doctest.h>
|
||||
#include <catch2/catch_test_macros.hpp>
|
||||
|
||||
int factorial(int number) { return number <= 1 ? number : factorial(number - 1) * number; }
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue