rewritten all remaining tests without cppunit

This commit is contained in:
Martin Pulec
2023-03-07 13:58:29 +01:00
parent 8b61de68d9
commit 84db4767bb
15 changed files with 170 additions and 362 deletions

View File

@@ -10,6 +10,7 @@
#include <string>
#include <utility>
#include "unit_common.h"
#include "video_codec.h"
#include "video_capture/testcard_common.h"
@@ -20,11 +21,6 @@ using std::string;
using std::to_string;
using std::ostringstream;
#define ASSERT_EQUAL_MESSAGE(msg, expected, actual) if ((expected) != (actual)) { \
cerr << "Assertion failed - expected " << (expected) << ", actual : " << (actual) << ": " << (msg) << "\n"; \
return false; \
}
extern "C" bool codec_conversion_test_testcard_uyvy_to_i420(void);
bool codec_conversion_test_testcard_uyvy_to_i420(void)