mirror of
https://github.com/clementine-player/Clementine
synced 2024-12-16 03:09:57 +01:00
17 lines
279 B
C++
17 lines
279 B
C++
#ifndef RESOURCES_ENV_H
|
|
#define RESOURCES_ENV_H
|
|
|
|
#include <gtest/gtest.h>
|
|
|
|
#include <QResource>
|
|
|
|
class ResourcesEnvironment : public ::testing::Environment {
|
|
public:
|
|
void SetUp() {
|
|
Q_INIT_RESOURCE(data);
|
|
Q_INIT_RESOURCE(translations);
|
|
}
|
|
};
|
|
|
|
#endif // RESOURCES_ENV_H
|