mirror of
https://github.com/clementine-player/Clementine
synced 2024-12-16 19:31:02 +01:00
20 lines
359 B
C
20 lines
359 B
C
|
#ifndef METATYPES_ENV_H
|
||
|
#define METATYPES_ENV_H
|
||
|
|
||
|
#include <gtest/gtest.h>
|
||
|
|
||
|
#include <QMetaType>
|
||
|
|
||
|
#include "directory.h"
|
||
|
#include "song.h"
|
||
|
|
||
|
class MetatypesEnvironment : public ::testing::Environment {
|
||
|
public:
|
||
|
void SetUp() {
|
||
|
qRegisterMetaType<DirectoryList>("DirectoryList");
|
||
|
qRegisterMetaType<SongList>("SongList");
|
||
|
}
|
||
|
};
|
||
|
|
||
|
#endif // RESOURCES_ENV_H
|