2010-04-02 11:35:36 -04:00
|
|
|
#include <cppunit/TestFixture.h>
|
2010-04-02 11:45:01 -04:00
|
|
|
#include <cppunit/extensions/HelperMacros.h>
|
2010-04-02 11:35:36 -04:00
|
|
|
#include "pbd/properties.h"
|
|
|
|
|
|
|
|
class ScalarPropertiesTest : public CppUnit::TestFixture
|
|
|
|
{
|
|
|
|
CPPUNIT_TEST_SUITE (ScalarPropertiesTest);
|
|
|
|
CPPUNIT_TEST (testBasic);
|
|
|
|
CPPUNIT_TEST_SUITE_END ();
|
|
|
|
|
2010-04-02 11:45:01 -04:00
|
|
|
public:
|
|
|
|
ScalarPropertiesTest ();
|
2010-04-02 11:35:36 -04:00
|
|
|
void testBasic ();
|
|
|
|
|
2010-04-02 12:38:23 -04:00
|
|
|
static void make_property_quarks ();
|
|
|
|
|
2010-04-02 11:35:36 -04:00
|
|
|
private:
|
2010-04-02 11:45:01 -04:00
|
|
|
PBD::Property<int> _fred;
|
2010-04-02 11:35:36 -04:00
|
|
|
};
|