From 40d2067dc44c9d46fc1f83c41fe4187a70f23bce Mon Sep 17 00:00:00 2001 From: David Robillard Date: Mon, 22 Apr 2019 11:50:34 +0200 Subject: Simplify unit tests and improve coverage by using assert --- test/double_buffer_test.cpp | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) (limited to 'test/double_buffer_test.cpp') diff --git a/test/double_buffer_test.cpp b/test/double_buffer_test.cpp index 1717d0e..f75f0ae 100644 --- a/test/double_buffer_test.cpp +++ b/test/double_buffer_test.cpp @@ -1,6 +1,6 @@ /* This file is part of Raul. - Copyright 2013 David Robillard + Copyright 2013-2019 David Robillard Raul is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software @@ -14,26 +14,24 @@ along with Raul. If not, see . */ +#undef NDEBUG + #include "raul/DoubleBuffer.hpp" +#include + int main() { Raul::DoubleBuffer db(0); - if (db.get() != 0) { - return 1; - } + assert(db.get() == 0); db.set(42); - if (db.get() != 42) { - return 1; - } + assert(db.get() == 42); db.set(43); - if (db.get() != 43) { - return 1; - } + assert(db.get() == 43); return 0; } -- cgit v1.2.1