2013-12-02 15:39:56 +05:30
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <QFile>
|
|
|
|
#include <QCoreApplication>
|
|
|
|
#include <QTest>
|
|
|
|
#include <QDir>
|
|
|
|
|
2016-04-13 04:54:55 +05:30
|
|
|
#define expandstr(s) expandstr2(s)
|
|
|
|
#define expandstr2(s) #s
|
2014-01-06 03:54:05 +05:30
|
|
|
|
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
|
|
|
};
|
|
|
|
|
2014-09-06 21:46:56 +05:30
|
|
|
#define MULTIMC_GET_TEST_FILE(file) TestsInternal::readFile(QFINDTESTDATA(file))
|
|
|
|
#define MULTIMC_GET_TEST_FILE_UTF8(file) TestsInternal::readFileUtf8(QFINDTESTDATA(file))
|
2013-12-02 15:39:56 +05:30
|
|
|
|