pollymc/cmake/UnitTest/TestUtil.h

29 lines
623 B
C
Raw Normal View History

2013-12-02 15:39:56 +05:30
#pragma once
#include <QFile>
#include <QCoreApplication>
#include <QTest>
#include <QDir>
#define expandstr(s) expandstr2(s)
#define expandstr2(s) #s
2014-09-06 21:46:56 +05:30
class TestsInternal
2013-12-02 15:39:56 +05:30
{
2014-09-06 21:46:56 +05:30
public:
2018-08-02 04:31:55 +05:30
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 15:39:56 +05:30
};
2021-10-18 04:17:02 +05:30
#define GET_TEST_FILE(file) TestsInternal::readFile(QFINDTESTDATA(file))
#define GET_TEST_FILE_UTF8(file) TestsInternal::readFileUtf8(QFINDTESTDATA(file))
2013-12-02 15:39:56 +05:30