#include "doctest/doctest.h" int sqr(int number) { return number * number; } TEST_CASE("testing the sqr function") { CHECK(sqr(2) == 4); }