blob: 8025a5d37da7b1078b8d0146c8a5332b7f806487 [file] [log] [blame]
#define DOCTEST_CONFIG_IMPLEMENTATION_IN_DLL
#include "doctest.h"
#include <cstdio>
TEST_CASE("plugin") {
printf("I am a test from the plugin!\n");
}
// set an exception translator for char
REGISTER_EXCEPTION_TRANSLATOR(char& e) {
return doctest::String("char: ") + doctest::toString(e);
}