tagparser/tests/helper.h

19 lines
529 B
C
Raw Normal View History

#ifndef TAGPARSER_TEST_HELPER
#define TAGPARSER_TEST_HELPER
#include "../tagvalue.h"
#include <ostream>
2017-05-24 19:33:11 +02:00
std::ostream &operator <<(std::ostream &os, const Media::TagTextEncoding &encoding);
/*!
* \brief Prints a TagValue UTF-8 encoded to enable CPPUNIT_ASSERT_EQUAL for tag values.
*/
2017-05-20 23:58:58 +02:00
inline std::ostream &operator <<(std::ostream &os, const Media::TagValue &tagValue)
{
2017-05-24 19:33:11 +02:00
return os << tagValue.toString(Media::TagTextEncoding::Utf8) << " (encoding: " << tagValue.dataEncoding() << ")";
}
#endif // TAGPARSER_TEST_HELPER