summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@googlemail.com>2019-11-29 03:56:13 +0800
committerMarkus Mohrhard <markus.mohrhard@googlemail.com>2019-11-29 03:56:42 +0800
commitce97a647a901b4ebb34dc6806ab0c4d2885e92e1 (patch)
tree78151f26c5982c173134c684323a80d8df5a744c
parent78e64f0edb4f3271a6ddbcdf9cba05138597bfca (diff)
-rw-r--r--examples/money/MoneyTest.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/examples/money/MoneyTest.h b/examples/money/MoneyTest.h
index 7a8e719..475f2e9 100644
--- a/examples/money/MoneyTest.h
+++ b/examples/money/MoneyTest.h
@@ -3,7 +3,6 @@
#define MONEYTEST_H
#include <cppunit/extensions/HelperMacros.h>
-#include "Money.h"
class MoneyTest : public CPPUNIT_NS::TestFixture
{
@@ -11,7 +10,7 @@ class MoneyTest : public CPPUNIT_NS::TestFixture
CPPUNIT_TEST( testConstructor );
CPPUNIT_TEST( testEqual );
CPPUNIT_TEST( testAdd );
- CPPUNIT_TEST_EXCEPTION( testAddThrow, IncompatibleMoneyError );
+ CPPUNIT_TEST( testAddThrow );
CPPUNIT_TEST_SUITE_END();
public: