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

implementation.cpp (347B)


      1 #define DOCTEST_CONFIG_IMPLEMENTATION_IN_DLL
      2 #define DOCTEST_CONFIG_IMPLEMENT
      3 #include <doctest/doctest.h>
      4 
      5 DOCTEST_MAKE_STD_HEADERS_CLEAN_FROM_WARNINGS_ON_WALL_BEGIN
      6 #include <iostream>
      7 DOCTEST_MAKE_STD_HEADERS_CLEAN_FROM_WARNINGS_ON_WALL_END
      8 
      9 TEST_CASE("implementation") {
     10     std::cout << "I am a test from the implementation!" << std::endl;
     11 }