the endless quest to plug memory leaks -- episode 379
[ardour.git] / libs / pbd / test / scalar_properties.h
1 #include <cppunit/TestFixture.h>
2 #include <cppunit/extensions/HelperMacros.h>
3 #include "pbd/properties.h"
4
5 class ScalarPropertiesTest : public CppUnit::TestFixture
6 {
7         CPPUNIT_TEST_SUITE (ScalarPropertiesTest);
8         CPPUNIT_TEST (testBasic);
9         CPPUNIT_TEST_SUITE_END ();
10
11 public:
12         ScalarPropertiesTest ();
13         void testBasic ();
14
15         static void make_property_quarks ();
16
17 private:
18         PBD::Property<int> _fred;
19 };