summaryrefslogtreecommitdiff
path: root/libs/pbd/test/windows_timer_utils_test.h
blob: 11ab4a45b4fde03830246e7ae444b93791b728cc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <cppunit/TestFixture.h>
#include <cppunit/extensions/HelperMacros.h>

class WindowsTimerUtilsTest : public CppUnit::TestFixture
{
	CPPUNIT_TEST_SUITE (WindowsTimerUtilsTest);
	CPPUNIT_TEST (testQPC);
	CPPUNIT_TEST (testMMTimers);
	CPPUNIT_TEST_SUITE_END ();

public:
	void testQPC ();
	void testMMTimers ();

};