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 29
|
/*
SPDX-FileCopyrightText: 2009 Constantin Berzan <exit3219@gmail.com>
SPDX-License-Identifier: LGPL-2.0-or-later
*/
#pragma once
#include <QObject>
class MainTextJobTest : public QObject
{
Q_OBJECT
private Q_SLOTS:
void initTestCase();
// "text/plain" tests:
void testPlainText();
void testWrappingErrors();
// charset tests:
void testCustomCharset();
void testNoCharset();
void testBadCharset();
void testFallbackCharset();
// html tests:
void testHtml();
void testHtmlWithImages();
};
|