summaryrefslogtreecommitdiff
path: root/test/powermaptest.cc
diff options
context:
space:
mode:
authorBent Bisballe Nyeng <deva@aasimon.org>2020-09-19 15:12:08 +0200
committerBent Bisballe Nyeng <deva@aasimon.org>2020-09-19 15:14:24 +0200
commit62e577cee9e199692d15cf741c0e29ae28f25c52 (patch)
tree3cfe20ce434b986e58efbc9bececcda41502ed33 /test/powermaptest.cc
parent19ac4649f16621430b7d34635410fd67fd8ef49e (diff)
Make use of uUnit as a submodule (dgunit renamed).
Diffstat (limited to 'test/powermaptest.cc')
-rw-r--r--test/powermaptest.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/powermaptest.cc b/test/powermaptest.cc
index 3e94575..bef5bdc 100644
--- a/test/powermaptest.cc
+++ b/test/powermaptest.cc
@@ -24,17 +24,17 @@
* 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 "../src/powermap.h"
class test_powermaptest
- : public DGUnit
+ : public uUnit
{
public:
test_powermaptest()
{
- DGUNIT_TEST(test_powermaptest::check_values);
+ uUNIT_TEST(test_powermaptest::check_values);
}
void check_values()
@@ -43,7 +43,7 @@ public:
// TODO
// std::cout << powermap.map(.8) << std::endl;
- // DGUNIT_ASSERT_EQUAL(powermap.map(.8), .8);
+ // uUNIT_ASSERT_EQUAL(powermap.map(.8), .8);
}
};