Engauge Digitizer  2
TestZoomTransition.h
1 #ifndef TEST_ZOOM_TRANSITION_H
2 #define TEST_ZOOM_TRANSITION_H
3 
4 #include <QObject>
5 
7 class TestZoomTransition : public QObject
8 {
9  Q_OBJECT
10 public:
12  explicit TestZoomTransition(QObject *parent = 0);
13 
14 signals:
15 
16 private slots:
17  void cleanupTestCase ();
18  void initTestCase ();
19 
20  void testInAtClosestEnum ();
21  void testInBeforeClosestFromEnum ();
22  void testInBeforeClosestFromFill ();
23  void testOutAtFarthestEnum ();
24  void testOutBeforeFarthestFromEnum ();
25  void testOutBeforeFarthestFromFill ();
26 };
27 
28 #endif // TEST_ZOOM_TRANSITION_H
29 
Unit test of ZoomTransition class.
TestZoomTransition(QObject *parent=0)
Single constructor.