summaryrefslogtreecommitdiff
path: root/libs/pbd/test/scalar_properties.h
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2010-04-02 15:35:36 +0000
committerCarl Hetherington <carl@carlh.net>2010-04-02 15:35:36 +0000
commiteecb8c496a7585b51e112860cc92388ca27e4403 (patch)
treea829f5bcf12723a172af3b16dd0593e82e5c7e69 /libs/pbd/test/scalar_properties.h
parenta48742043be3ecc3d0522ae48ff4401665d7e83f (diff)
Some stub tests for scalar properties.
git-svn-id: svn://localhost/ardour2/branches/3.0@6835 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/pbd/test/scalar_properties.h')
-rw-r--r--libs/pbd/test/scalar_properties.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/libs/pbd/test/scalar_properties.h b/libs/pbd/test/scalar_properties.h
new file mode 100644
index 0000000000..a3719fbe13
--- /dev/null
+++ b/libs/pbd/test/scalar_properties.h
@@ -0,0 +1,15 @@
+#include <cppunit/TestFixture.h>
+#include "pbd/properties.h"
+
+class ScalarPropertiesTest : public CppUnit::TestFixture
+{
+public:
+ CPPUNIT_TEST_SUITE (ScalarPropertiesTest);
+ CPPUNIT_TEST (testBasic);
+ CPPUNIT_TEST_SUITE_END ();
+
+ void testBasic ();
+
+private:
+ PBD::Property<int> _property;
+};