summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@googlemail.com>2015-08-18 03:58:24 +0200
committerMarkus Mohrhard <markus.mohrhard@googlemail.com>2015-08-18 03:58:59 +0200
commit69ea3cbf1ec9ff8c5159f73d0ce71087f7727792 (patch)
tree44e6260648f5deea368ed7ee40cecc36a7b02065
parent9c5b50060411ec71ac1583ae96e8f4652803b564 (diff)
downloadcppunit-69ea3cbf1ec9ff8c5159f73d0ce71087f7727792.tar.gz
remove commented out code
The code has been commented out for a long time and is not related to a missing fix.
-rw-r--r--include/cppunit/TestCaller.h9
1 files changed, 1 insertions, 8 deletions
diff --git a/include/cppunit/TestCaller.h b/include/cppunit/TestCaller.h
index dc4d82e..aba2c27 100644
--- a/include/cppunit/TestCaller.h
+++ b/include/cppunit/TestCaller.h
@@ -162,14 +162,7 @@ public:
void runTest()
{
-// try {
- (m_fixture->*m_test)();
-// }
-// catch ( ExpectedException & ) {
-// return;
-// }
-
-// ExpectedExceptionTraits<ExpectedException>::expectedException();
+ (m_fixture->*m_test)();
}
void setUp()