Catch是一个不错的单元测试框架,帮助刷Leetcode
github在此
使用也比较简单,最简单的方式就是直接下载Catch.hpp,做好引用。
#define CATCH_CONFIG_MAIN // This tells Catch to provide a main() - only do this in one cpp file
#include "catch.hpp"
#include <vector>
using namespace std;
unsigned int Factorial( unsigned int number ) {
return number > 1<