summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'QA/UnitTest/template/FooTest.cpp')
m---------QA0
-rw-r--r--QA/UnitTest/template/FooTest.cpp22
2 files changed, 0 insertions, 22 deletions
diff --git a/QA b/QA
new file mode 160000
+Subproject 2eb285e3a51c2482fd51558289d58675a6fe5b7
diff --git a/QA/UnitTest/template/FooTest.cpp b/QA/UnitTest/template/FooTest.cpp
deleted file mode 100644
index 9657360..0000000
--- a/QA/UnitTest/template/FooTest.cpp
+++ /dev/null
@@ -1,22 +0,0 @@
-#include <cppunit/extensions/HelperMacros.h>
-#include <cppunit/extensions/TestFactoryRegistry.h>
-
-using namespace Swift;
-
-class FooTest : public CppUnit::TestFixture {
- CPPUNIT_TEST_SUITE(FooTest);
- CPPUNIT_TEST(testBar);
- CPPUNIT_TEST_SUITE_END();
-
- public:
- void setUp() {
- }
-
- void tearDown() {
- }
-
- void testBar() {
- }
-};
-
-CPPUNIT_TEST_SUITE_REGISTRATION(FooTest);