mirror of
https://github.com/clementine-player/Clementine
synced 2025-02-05 21:53:28 +01:00
c043eaba0c
Add lots of test infrastructure.
13 lines
252 B
C++
13 lines
252 B
C++
#ifndef TEST_UTILS_H
|
|
#define TEST_UTILS_H
|
|
|
|
#include <iostream>
|
|
|
|
class QString;
|
|
class QUrl;
|
|
|
|
std::ostream& operator <<(std::ostream& stream, const QString& str);
|
|
std::ostream& operator <<(std::ostream& stream, const QUrl& url);
|
|
|
|
#endif // TEST_UTILS_H
|