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