File indexing completed on 2024-04-21 04:34:22

0001 #ifndef EDGE_TEST_H
0002 #define EDGE_TEST_H
0003 
0004 #include <QObject>
0005 
0006 class EdgeTest : public QObject
0007 {
0008     Q_OBJECT
0009 
0010 public Q_SLOTS:
0011     void initTestCase();
0012     void cleanupTestCase();
0013 
0014 private Q_SLOTS:
0015     void edgeTest();
0016 };
0017 
0018 #endif // EDGE_TEST_H
0019 
0020 // kate: indent-width 4; replace-tabs on;