diff options
author | Bent Bisballe Nyeng <deva@aasimon.org> | 2020-09-19 15:12:08 +0200 |
---|---|---|
committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2020-09-19 15:14:24 +0200 |
commit | 62e577cee9e199692d15cf741c0e29ae28f25c52 (patch) | |
tree | 3cfe20ce434b986e58efbc9bececcda41502ed33 /test/enginetest.cc | |
parent | 19ac4649f16621430b7d34635410fd67fd8ef49e (diff) |
Make use of uUnit as a submodule (dgunit renamed).
Diffstat (limited to 'test/enginetest.cc')
-rw-r--r-- | test/enginetest.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/enginetest.cc b/test/enginetest.cc index 585b0d1..55c6464 100644 --- a/test/enginetest.cc +++ b/test/enginetest.cc @@ -24,7 +24,7 @@ * along with DrumGizmo; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. */ -#include "dgunit.h" +#include <uunit.h> #include <thread> #include <chrono> @@ -69,12 +69,12 @@ public: bool isFreewheeling() const override { return true; } }; -class test_engine : public DGUnit +class test_engine : public uUnit { public: test_engine() { - DGUNIT_TEST(test_engine::loading); + uUNIT_TEST(test_engine::loading); } DrumkitCreator drumkit_creator; |