doctest

FORK: The fastest feature-rich C++11/14/17/20 single-header testing framework
git clone https://git.neptards.moe/neptards/doctest.git
Log | Files | Refs | README

main.cpp (146B)


      1 #define DOCTEST_CONFIG_IMPLEMENT_WITH_MAIN
      2 #include <doctest/doctest.h>
      3 
      4 TEST_CASE("main") { std::cout << "hello from <main.cpp>" << std::endl; }