MultiMC5/cmake/UnitTest/TestUtil.h

29 lines
623 B
C
Raw Normal View History

2013-12-02 10:09:56 +00:00
#pragma once
#include <QFile>
#include <QCoreApplication>
#include <QTest>
#include <QDir>
#define expandstr(s) expandstr2(s)
#define expandstr2(s) #s
2014-09-06 16:16:56 +00:00
class TestsInternal
2013-12-02 10:09:56 +00:00
{
2014-09-06 16:16:56 +00:00
public:
2018-08-01 23:01:55 +00:00
static QByteArray readFile(const QString &fileName)
{
QFile f(fileName);
f.open(QFile::ReadOnly);
return f.readAll();
}
static QString readFileUtf8(const QString &fileName)
{
return QString::fromUtf8(readFile(fileName));
}
2013-12-02 10:09:56 +00:00
};
2021-10-17 22:47:02 +00:00
#define GET_TEST_FILE(file) TestsInternal::readFile(QFINDTESTDATA(file))
#define GET_TEST_FILE_UTF8(file) TestsInternal::readFileUtf8(QFINDTESTDATA(file))
2013-12-02 10:09:56 +00:00