summaryrefslogtreecommitdiffstats
path: root/cmake/UnitTest/TestUtil.h
blob: 84f18a2ee99f8fbf898566ad82bb16ca794d9fd9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#pragma once

#include <QFile>
#include <QCoreApplication>
#include <QTest>
#include <QDir>

#define expandstr(s) expandstr2(s)
#define expandstr2(s) #s

class TestsInternal
{
public:
	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));
	}
};

#define MULTIMC_GET_TEST_FILE(file) TestsInternal::readFile(QFINDTESTDATA(file))
#define MULTIMC_GET_TEST_FILE_UTF8(file) TestsInternal::readFileUtf8(QFINDTESTDATA(file))