13
0
livetrax/libs/pbd/test/scalar_properties.h
Carl Hetherington 97e11c790f A few more libpbd test tweaks.
git-svn-id: svn://localhost/ardour2/branches/3.0@6839 d708f5d6-7413-0410-9779-e7cbd77b26cf
2010-04-02 16:38:23 +00:00

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;
};