File indexing completed on 2025-01-05 05:18:57

0001 // SPDX-FileCopyrightText: 2023-2024 Laurent Montel <montel.org>
0002 //
0003 // SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
0004 
0005 #pragma once
0006 
0007 #include <QObject>
0008 
0009 class KLLMConstantsTest : public QObject
0010 {
0011     Q_OBJECT
0012 public:
0013     explicit KLLMConstantsTest(QObject *parent = nullptr);
0014     ~KLLMConstantsTest() override = default;
0015 private Q_SLOTS:
0016     void shouldHaveDefaultValues();
0017 };