8475061136
thanks to Nico Werner, who did most of the porting work
11 lines
329 B
C++
11 lines
329 B
C++
#define DOCTEST_CONFIG_IMPLEMENTATION_IN_DLL
|
|
#define DOCTEST_CONFIG_IMPLEMENT
|
|
#include <doctest/doctest.h>
|
|
|
|
DOCTEST_MAKE_STD_HEADERS_CLEAN_FROM_WARNINGS_ON_WALL_BEGIN
|
|
#include <cstdio>
|
|
DOCTEST_MAKE_STD_HEADERS_CLEAN_FROM_WARNINGS_ON_WALL_END
|
|
|
|
TEST_CASE("implementation") {
|
|
printf("I am a test from the implementation!\n");
|
|
}
|