File indexing completed on 2025-03-16 04:30:27
0001 /* 0002 SPDX-FileCopyrightText: 2011 Michal Malek <michalm@jabster.pl> 0003 SPDX-FileCopyrightText: 1998-2009 Sebastian Trueg <trueg@k3b.org> 0004 0005 SPDX-License-Identifier: GPL-2.0-or-later 0006 */ 0007 0008 #ifndef K3B_MODEL_UTILS_TEST_H 0009 #define K3B_MODEL_UTILS_TEST_H 0010 0011 #include <QObject> 0012 0013 class ModelUtilsTest : public QObject 0014 { 0015 Q_OBJECT 0016 public: 0017 ModelUtilsTest(); 0018 private slots: 0019 void testCommonCheckState(); 0020 void testToggleCommonCheckState(); 0021 void testCommonText(); 0022 void testSetCommonText(); 0023 }; 0024 0025 #endif // K3B_GLOBALS_TEST_H