From 87ee47ec12d3abe547672dfb33d5a9dba70047e0 Mon Sep 17 00:00:00 2001 From: Ryan Calhoun Date: Fri, 11 Dec 2015 17:53:38 -0600 Subject: [PATCH] Update README.md --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index d6976ff..364a3e5 100644 --- a/README.md +++ b/README.md @@ -13,6 +13,8 @@ testing. #include "cppunit/TestResultCollector.h" #include "cppunit/ui/text/TestRunner.h" +#include "MyTestClass.h" + int main(int argc, const char* argv[]) { CppUnit::TextUi::TestRunner runner; @@ -38,7 +40,6 @@ public: CPPUNIT_ADD_TEST(suite, testSomething); return suite; - } }; ```