mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-07 15:25:01 +01:00
16 lines
321 B
C
16 lines
321 B
C
|
|
#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 ();
|
||
|
|
|
||
|
|
};
|