summaryrefslogtreecommitdiff
path: root/test/unit/t_utils.cc
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2009-01-28 20:49:26 -0400
committerJohn Wiegley <johnw@newartisans.com>2009-01-28 20:49:26 -0400
commite851c02d2747be0acc336bc278da9e0460b75738 (patch)
treedf813c5c572922cf05a6317b7eb1d6062dedac05 /test/unit/t_utils.cc
parent3020f0f8513d8cef04d4a291dc9b5fa50e1b832c (diff)
downloadledger-e851c02d2747be0acc336bc278da9e0460b75738.tar.gz
ledger-e851c02d2747be0acc336bc278da9e0460b75738.tar.bz2
ledger-e851c02d2747be0acc336bc278da9e0460b75738.zip
Unit test for Python are now auto-generated from the C++ tests.
Diffstat (limited to 'test/unit/t_utils.cc')
-rw-r--r--test/unit/t_utils.cc9
1 files changed, 7 insertions, 2 deletions
diff --git a/test/unit/t_utils.cc b/test/unit/t_utils.cc
index 57c2a5d4..3c32cf78 100644
--- a/test/unit/t_utils.cc
+++ b/test/unit/t_utils.cc
@@ -2,9 +2,14 @@
CPPUNIT_TEST_SUITE_NAMED_REGISTRATION(UtilitiesTestCase, "util");
-void UtilitiesTestCase::setUp() {}
-void UtilitiesTestCase::tearDown() {}
+void UtilitiesTestCase::setUp() {
+ int x = 1;
+}
+void UtilitiesTestCase::tearDown() {
+ int x = 1;
+}
void UtilitiesTestCase::testConstructors()
{
+ int x = 1;
}