diff options
author | John Wiegley <johnw@newartisans.com> | 2009-01-28 20:49:26 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2009-01-28 20:49:26 -0400 |
commit | e851c02d2747be0acc336bc278da9e0460b75738 (patch) | |
tree | df813c5c572922cf05a6317b7eb1d6062dedac05 /test/unit/t_utils.cc | |
parent | 3020f0f8513d8cef04d4a291dc9b5fa50e1b832c (diff) | |
download | ledger-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.cc | 9 |
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; } |