File: rfc2231test.h

package info (click to toggle)
kmime 22.12.3-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 1,640 kB
  • sloc: cpp: 11,596; makefile: 14; perl: 12; sh: 1
file content (20 lines) | stat: -rw-r--r-- 311 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*
    SPDX-FileCopyrightText: 2010 Leo Franchi <lfranchi@kde.org>

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

#pragma once

#include <QObject>

class RFC2231Test : public QObject
{
    Q_OBJECT
private Q_SLOTS:
    void testRFC2231decode();
    void testInvalidDecode();
    void testRFC2231encode();
};