blob: 8025a5d37da7b1078b8d0146c8a5332b7f806487 [file] [log] [blame]
onqtamb43aa042017-03-13 19:04:08 +02001#define DOCTEST_CONFIG_IMPLEMENTATION_IN_DLL
2#include "doctest.h"
3
4#include <cstdio>
5
6TEST_CASE("plugin") {
7 printf("I am a test from the plugin!\n");
8}
onqtam05bcc372017-03-17 02:10:38 +02009
10// set an exception translator for char
11REGISTER_EXCEPTION_TRANSLATOR(char& e) {
12 return doctest::String("char: ") + doctest::toString(e);
13}