00001 #ifndef TEST_ZOOM_TRANSITION_H
00002 #define TEST_ZOOM_TRANSITION_H
00003
00004 #include <QObject>
00005
00007 class TestZoomTransition : public QObject
00008 {
00009 Q_OBJECT
00010 public:
00012 explicit TestZoomTransition(QObject *parent = 0);
00013
00014 signals:
00015
00016 private slots:
00017 void cleanupTestCase ();
00018 void initTestCase ();
00019
00020 void testInAtClosestEnum ();
00021 void testInBeforeClosestFromEnum ();
00022 void testInBeforeClosestFromFill ();
00023 void testOutAtFarthestEnum ();
00024 void testOutBeforeFarthestFromEnum ();
00025 void testOutBeforeFarthestFromFill ();
00026 };
00027
00028 #endif // TEST_ZOOM_TRANSITION_H
00029