summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRemko Tronçon <git@el-tramo.be>2010-03-28 13:54:00 (GMT)
committerRemko Tronçon <git@el-tramo.be>2010-03-28 13:55:20 (GMT)
commit5bc43e225db8cec9a0e32480616b217ba9d69f89 (patch)
treef7cd30a5e68d43d34b13718f8fe8a1b67e6de16e /QA/UnitTest/template
parentb61486fefe602e0d18fa5279021006f87b965307 (diff)
downloadswift-5bc43e225db8cec9a0e32480616b217ba9d69f89.zip
swift-5bc43e225db8cec9a0e32480616b217ba9d69f89.tar.bz2
Moving QA to a separate module.
Diffstat (limited to 'QA/UnitTest/template')
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);