diff options
author | David Robillard <d@drobilla.net> | 2019-04-22 11:50:34 +0200 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2019-04-22 11:50:34 +0200 |
commit | 40d2067dc44c9d46fc1f83c41fe4187a70f23bce (patch) | |
tree | ffcd296efa4832e7127013e60e36ece31389fe26 /test/double_buffer_test.cpp | |
parent | be6c2693ec741650a0684fa8a827ab2a5cd7b8f7 (diff) | |
download | raul-40d2067dc44c9d46fc1f83c41fe4187a70f23bce.tar.gz raul-40d2067dc44c9d46fc1f83c41fe4187a70f23bce.tar.bz2 raul-40d2067dc44c9d46fc1f83c41fe4187a70f23bce.zip |
Simplify unit tests and improve coverage by using assert
Diffstat (limited to 'test/double_buffer_test.cpp')
-rw-r--r-- | test/double_buffer_test.cpp | 18 |
1 files changed, 8 insertions, 10 deletions
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 <http://drobilla.net> + Copyright 2013-2019 David Robillard <http://drobilla.net> 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 <http://www.gnu.org/licenses/>. */ +#undef NDEBUG + #include "raul/DoubleBuffer.hpp" +#include <cassert> + int main() { Raul::DoubleBuffer<int> 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; } |