File: rfc2047test.h

package info (click to toggle)
kf6-kcodecs 6.13.0-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 23,784 kB
  • sloc: cpp: 8,843; sh: 14; makefile: 5
file content (26 lines) | stat: -rw-r--r-- 456 bytes parent folder | download | duplicates (4)
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
/*
    SPDX-FileCopyrightText: 2006 Volker Krause <vkrause@kde.org>

    SPDX-License-Identifier: LGPL-2.0-only
*/

#ifndef RFC2047TEST_H
#define RFC2047TEST_H

#include <QObject>

class RFC2047Test : public QObject
{
    Q_OBJECT
private Q_SLOTS:
    void testRFC2047decode_data();
    void testRFC2047decode();

    void testInvalidDecode_data();
    void testInvalidDecode();

    void testRFC2047encode_data();
    void testRFC2047encode();
};

#endif