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_2.cpp (350B)


      1 // note that DOCTEST_CONFIG_IMPLEMENTATION_IN_DLL should not be defined here
      2 #include <doctest/doctest.h>
      3 
      4 DOCTEST_MAKE_STD_HEADERS_CLEAN_FROM_WARNINGS_ON_WALL_BEGIN
      5 #include <iostream>
      6 DOCTEST_MAKE_STD_HEADERS_CLEAN_FROM_WARNINGS_ON_WALL_END
      7 
      8 TEST_CASE("implementation_2") {
      9     std::cout << "I am a test from the implementation_2!" << std::endl;
     10 }