mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-06 06:44:57 +01:00
19 lines
399 B
C++
19 lines
399 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;
|
|
};
|