From d93b8cf9aaf8972f407c7cb6b8ef2de63be25112 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sat, 23 Feb 2013 19:44:17 +0000 Subject: Add missing test file. git-svn-id: http://svn.drobilla.net/lad/trunk/raul@5075 a436a847-0d15-0410-975c-d299462d15a1 --- test/double_buffer_test.cpp | 49 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 test/double_buffer_test.cpp (limited to 'test/double_buffer_test.cpp') diff --git a/test/double_buffer_test.cpp b/test/double_buffer_test.cpp new file mode 100644 index 0000000..abcd317 --- /dev/null +++ b/test/double_buffer_test.cpp @@ -0,0 +1,49 @@ +/* + This file is part of Raul. + Copyright 2012 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 + Foundation, either version 3 of the License, or any later version. + + Raul is distributed in the hope that it will be useful, but WITHOUT ANY + WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR + A PARTICULAR PURPOSE. See the GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Raul. If not, see . +*/ + +#include "raul/DoubleBuffer.hpp" + +using namespace std; +using namespace Raul; + +int +main(int argc, char** argv) +{ + DoubleBuffer db(0); + + if (db.get() != 0) { + return 1; + } + + db.set(42); + if (db.get() != 42) { + return 1; + } + + DoubleBuffer db2(db); + if (db2.get() != 42) { + return 1; + } + + db.set(43); + if (db.get() != 43) { + return 1; + } else if (db2.get() != 42) { + return 1; + } + + return 0; +} -- cgit v1.2.1