File indexing completed on 2024-04-14 03:46:35

0001 /*
0002  * SPDX-FileCopyrightText: 2016 Hartmut Riesenbeck <hartmut.riesenbeck@gmx.de>
0003  * SPDX-License-Identifier: GPL-2.0-or-later
0004  */
0005 
0006 #ifndef KEDUVOCTEXTTEST_H
0007 #define KEDUVOCTEXTTEST_H
0008 
0009 #include <QObject>
0010 
0011 class KEduVocText;
0012 
0013 namespace KEduVocTextTests
0014 {
0015 /** @file
0016  * \brief KeduVocText test application
0017  *        Various tests for KeduVocText class.
0018  * @author Hartmut Riesenbeck <hartmut.riesenbeck@gmx.de>
0019  */
0020 
0021 class KEduVocTextTest : public QObject
0022 {
0023     Q_OBJECT
0024 
0025 private slots:
0026     void testAssignmentOperator();
0027     void testEqualToOperator();
0028 
0029 private:
0030     bool isEqual(const KEduVocText &a, const KEduVocText &b) const;
0031 };
0032 }
0033 
0034 #endif // KEDUVOCTEXTTEST_H