mirror of
https://github.com/outbackdingo/UltraGrid.git
synced 2026-03-21 01:40:15 +00:00
+ skip UDP tests if running inside GitHub VM (doesn't support multicast) + create symbols (ctags/cscope) for tests
27 lines
522 B
C++
27 lines
522 B
C++
#ifndef VIDEO_DESC_TEST_H
|
|
#define VIDEO_DESC_TEST_H
|
|
|
|
#include <cppunit/extensions/HelperMacros.h>
|
|
#include <list>
|
|
|
|
#include "types.h"
|
|
|
|
class video_desc_test : public CPPUNIT_NS::TestFixture
|
|
{
|
|
CPPUNIT_TEST_SUITE( video_desc_test );
|
|
CPPUNIT_TEST( testIOOperatorSymetry );
|
|
CPPUNIT_TEST_SUITE_END();
|
|
|
|
public:
|
|
video_desc_test();
|
|
~video_desc_test();
|
|
void setUp();
|
|
void tearDown();
|
|
|
|
void testIOOperatorSymetry();
|
|
private:
|
|
const std::list<video_desc> m_test_desc; // tested desc
|
|
};
|
|
|
|
#endif // VIDEO_DESC_TEST_H
|