added _ in TESTCASE and TESTSUITE
diff --git a/examples/multi_dll/common.h b/examples/multi_dll/common.h
index f80f65c..0d90176 100644
--- a/examples/multi_dll/common.h
+++ b/examples/multi_dll/common.h
@@ -32,7 +32,7 @@
 

 #include <cstdio>

 

-TESTCASE("shared") {

+TEST_CASE("shared") {

     printf("I am a test in a header used by the executable and the dll!\n");

 }

 

diff --git a/examples/multi_dll/dll.cpp b/examples/multi_dll/dll.cpp
index 5834e1e..937a67a 100644
--- a/examples/multi_dll/dll.cpp
+++ b/examples/multi_dll/dll.cpp
@@ -1,7 +1,7 @@
 #define BUILDING_DLL

 #include "common.h"

 

-TESTCASE("dll") {

+TEST_CASE("dll") {

     printf("I am a test from the dll!\n");

 }

 

diff --git a/examples/multi_dll/main.cpp b/examples/multi_dll/main.cpp
index 3a17e9f..1d2d6e2 100644
--- a/examples/multi_dll/main.cpp
+++ b/examples/multi_dll/main.cpp
@@ -1,6 +1,6 @@
 #include "common.h"

 

-TESTCASE("executable") {

+TEST_CASE("executable") {

     printf("I am a test from the executable!\n");

 }