File indexing completed on 2025-03-09 04:54:26
0001 /* 0002 SPDX-FileCopyrightText: 2019-2024 Laurent Montel <montel@kde.org> 0003 0004 Code based on ARHParser.jsm from dkim_verifier (Copyright (c) Philippe Lieser) 0005 (This software is licensed under the terms of the MIT License.) 0006 0007 SPDX-License-Identifier: LGPL-2.0-or-later 0008 */ 0009 0010 #pragma once 0011 0012 #include <QObject> 0013 0014 class DKIMAuthenticationStatusInfoConverterTest : public QObject 0015 { 0016 Q_OBJECT 0017 public: 0018 explicit DKIMAuthenticationStatusInfoConverterTest(QObject *parent = nullptr); 0019 ~DKIMAuthenticationStatusInfoConverterTest() override = default; 0020 private Q_SLOTS: 0021 void shouldHaveDefaultValues(); 0022 };