File indexing completed on 2024-12-15 04:02:44

0001 /*
0002  * SPDX-FileCopyrightText: 2018 Dag Andersen <danders@get2net.dk>
0003  *
0004  * This file is part of the KGantt library.
0005  * 
0006  * SPDX-License-Identifier: LGPL-2.0-or-later
0007  */
0008 #ifndef TESTKGANTTCONSTRAINTMODEL_H
0009 #define TESTKGANTTCONSTRAINTMODEL_H
0010 
0011 #include <QtTest>
0012 #include <QStandardItemModel>
0013 
0014 
0015 class TestKGanttConstraintModel : public QObject
0016 {
0017     Q_OBJECT
0018 private:
0019     QStandardItemModel *itemModel;
0020 
0021 private Q_SLOTS:
0022     void initTestCase();
0023     void cleanupTestCase();
0024     void testModel();
0025 };
0026 #endif