diff options
author | Bent Bisballe Nyeng <deva@aasimon.org> | 2016-03-23 23:02:09 +0100 |
---|---|---|
committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2016-03-31 21:06:49 +0200 |
commit | c9f773c9f2c9ea52d5e0ed69b13870c0c5f96acf (patch) | |
tree | 6476576a46c85c109f3fdd7d4ffa2107d66873dc /test/memcheckertest.cc | |
parent | 6265f9a0d8b213529905324f90059941a4f2a99a (diff) |
Fix tests.
Diffstat (limited to 'test/memcheckertest.cc')
-rw-r--r-- | test/memcheckertest.cc | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/test/memcheckertest.cc b/test/memcheckertest.cc index 90bd254..e312ca7 100644 --- a/test/memcheckertest.cc +++ b/test/memcheckertest.cc @@ -52,6 +52,7 @@ class MemCheckerTest CPPUNIT_TEST(check_free_ram); CPPUNIT_TEST_SUITE_END(); private: + Settings settings; DrumKit kit; const std::string small_kit_path = "kit/small_kit.xml"; @@ -70,7 +71,7 @@ public: void small_drumkit() { // load the small kit - DrumKitParser parser(kit); + DrumKitParser parser(settings, kit); CPPUNIT_ASSERT(!parser.parseFile(small_kit_path)); // check if the memchecker thinks it fits into memory @@ -80,7 +81,7 @@ public: void huge_drumkit() { // load the huge kit - DrumKitParser parser(kit); + DrumKitParser parser(settings, kit); CPPUNIT_ASSERT(!parser.parseFile(huge_kit_path)); // check if the memchecker thinks it doesn't fit into memory @@ -94,7 +95,7 @@ public: CPPUNIT_ASSERT_EQUAL(bytes_per_channel, calcBytesPerChannel(audiofile)); // load the huge kit - DrumKitParser parser(kit); + DrumKitParser parser(settings, kit); CPPUNIT_ASSERT(!parser.parseFile(huge_kit_path)); // check if the protected method of the memchecker reports the correct size |