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

lib_1_src1.cpp (244B)


      1 #include <doctest/doctest.h>
      2 DOCTEST_MAKE_STD_HEADERS_CLEAN_FROM_WARNINGS_ON_WALL_BEGIN
      3 #include <iostream>
      4 DOCTEST_MAKE_STD_HEADERS_CLEAN_FROM_WARNINGS_ON_WALL_END
      5 
      6 TEST_CASE("asd") { std::cout << "hello from <lib_1_src1.cpp>" << std::endl; }