File: maintextjobtest.h

package info (click to toggle)
messagelib 4%3A24.12.3-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 83,476 kB
  • sloc: cpp: 106,765; xml: 375; sh: 25; makefile: 15
file content (29 lines) | stat: -rw-r--r-- 550 bytes parent folder | download | duplicates (3)
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();
};