Engauge Digitizer  2
TestSegmentFill.h
1 #ifndef TEST_SEGMENT_H
2 #define TEST_SEGMENT_H
3 
4 #include <QObject>
5 
7 class TestSegmentFill : public QObject
8 {
9  Q_OBJECT
10 public:
12  explicit TestSegmentFill(QObject *parent = 0);
13 
14 signals:
15 
16 private slots:
17  void cleanupTestCase ();
18  void initTestCase ();
19 
20  void testFindSegments ();
21 
22 };
23 
24 #endif // TEST_SEGMENT_H
Unit test of segment fill feature.
TestSegmentFill(QObject *parent=0)
Single constructor.