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 TESTGANTTCONSTRAINT_H 0009 #define TESTGANTTCONSTRAINT_H 0010 0011 #include <QtTest> 0012 0013 0014 class TestKGanttConstraint : public QObject 0015 { 0016 Q_OBJECT 0017 0018 private Q_SLOTS: 0019 void initTestCase(); 0020 void cleanupTestCase(); 0021 void test(); 0022 }; 0023 #endif