mirror of
https://github.com/outbackdingo/UltraGrid.git
synced 2026-03-20 01:09:21 +00:00
+ skip UDP tests if running inside GitHub VM (doesn't support multicast) + create symbols (ctags/cscope) for tests
29 lines
546 B
C++
29 lines
546 B
C++
#ifndef VIDEO_DESC_TEST_H
|
|
#define VIDEO_DESC_TEST_H
|
|
|
|
#include <cppunit/extensions/HelperMacros.h>
|
|
#include <list>
|
|
|
|
#include "utils/misc.h"
|
|
|
|
class get_framerate_test : public CPPUNIT_NS::TestFixture
|
|
{
|
|
CPPUNIT_TEST_SUITE( get_framerate_test );
|
|
CPPUNIT_TEST( test_2997 );
|
|
CPPUNIT_TEST( test_3000 );
|
|
CPPUNIT_TEST( test_free );
|
|
CPPUNIT_TEST_SUITE_END();
|
|
|
|
public:
|
|
get_framerate_test();
|
|
~get_framerate_test();
|
|
void setUp();
|
|
void tearDown();
|
|
|
|
void test_2997();
|
|
void test_3000();
|
|
void test_free();
|
|
};
|
|
|
|
#endif // VIDEO_DESC_TEST_H
|