summaryrefslogtreecommitdiff
path: root/libs/pbd/test/scalar_properties.h
blob: 6175aeacfe0720d7b12412083be5740e63ea42b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#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;
};