97e11c790f
git-svn-id: svn://localhost/ardour2/branches/3.0@6839 d708f5d6-7413-0410-9779-e7cbd77b26cf
20 lines
400 B
C++
20 lines
400 B
C++
#include <cppunit/TestFixture.h>
|
|
#include <cppunit/extensions/HelperMacros.h>
|
|
#include "pbd/properties.h"
|
|
|
|
class ScalarPropertiesTest : public CppUnit::TestFixture
|
|
{
|
|
CPPUNIT_TEST_SUITE (ScalarPropertiesTest);
|
|
CPPUNIT_TEST (testBasic);
|
|
CPPUNIT_TEST_SUITE_END ();
|
|
|
|
public:
|
|
ScalarPropertiesTest ();
|
|
void testBasic ();
|
|
|
|
static void make_property_quarks ();
|
|
|
|
private:
|
|
PBD::Property<int> _fred;
|
|
};
|