QSslSocket autotest: fix failing tests
[qt-netbsd.git] / tests / auto / q3progressbar / tst_q3progressbar.cpp
blob7dd988bb3c95d454c972de86510456d4902f89d1
1 /****************************************************************************
2 **
3 ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
4 ** Contact: Nokia Corporation (qt-info@nokia.com)
5 **
6 ** This file is part of the test suite of the Qt Toolkit.
7 **
8 ** $QT_BEGIN_LICENSE:LGPL$
9 ** No Commercial Usage
10 ** This file contains pre-release code and may not be distributed.
11 ** You may use this file in accordance with the terms and conditions
12 ** contained in the Technology Preview License Agreement accompanying
13 ** this package.
15 ** GNU Lesser General Public License Usage
16 ** Alternatively, this file may be used under the terms of the GNU Lesser
17 ** General Public License version 2.1 as published by the Free Software
18 ** Foundation and appearing in the file LICENSE.LGPL included in the
19 ** packaging of this file. Please review the following information to
20 ** ensure the GNU Lesser General Public License version 2.1 requirements
21 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
23 ** In addition, as a special exception, Nokia gives you certain
24 ** additional rights. These rights are described in the Nokia Qt LGPL
25 ** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this
26 ** package.
28 ** If you have questions regarding the use of this file, please contact
29 ** Nokia at qt-info@nokia.com.
38 ** $QT_END_LICENSE$
40 ****************************************************************************/
43 #include <QtTest/QtTest>
45 #include <qapplication.h>
46 #include <qdebug.h>
47 #include <q3progressbar.h>
49 //TESTED_CLASS=
50 //TESTED_FILES=
52 class tst_Q3ProgressBar : public QObject
54 Q_OBJECT
56 public:
57 tst_Q3ProgressBar();
58 virtual ~tst_Q3ProgressBar();
60 private slots:
61 void getSetCheck();
62 void setProgress();
65 tst_Q3ProgressBar::tst_Q3ProgressBar()
69 tst_Q3ProgressBar::~tst_Q3ProgressBar()
73 // Testing get/set functions
74 void tst_Q3ProgressBar::getSetCheck()
76 Q3ProgressBar obj1;
77 // bool Q3ProgressBar::centerIndicator()
78 // void Q3ProgressBar::setCenterIndicator(bool)
79 obj1.setCenterIndicator(false);
80 QCOMPARE(false, obj1.centerIndicator());
81 obj1.setCenterIndicator(true);
82 QCOMPARE(true, obj1.centerIndicator());
85 class MyCustomProgressBar : public Q3ProgressBar
87 public :
88 MyCustomProgressBar() : Q3ProgressBar()
90 paintNumber = 0;
93 void paintEvent(QPaintEvent * event)
95 paintNumber++;
96 Q3ProgressBar::paintEvent(event);
98 int paintNumber;
101 void tst_Q3ProgressBar::setProgress()
103 MyCustomProgressBar * m_progressBar = new MyCustomProgressBar();
104 m_progressBar->show();
105 QApplication::processEvents();
107 //case with total steps = 0
108 m_progressBar->setTotalSteps(0);
109 int oldValue = m_progressBar->progress();
110 m_progressBar->paintNumber = 0;
111 m_progressBar->setProgress(m_progressBar->progress() + 1);
112 QCOMPARE(oldValue + 1,m_progressBar->progress());
113 QApplication::processEvents();
114 QVERIFY(m_progressBar->paintNumber >= 1); //it might be more than 1 because it is animated
116 //standard case
117 m_progressBar->setTotalSteps(3);
118 m_progressBar->setProgress(0);
119 m_progressBar->paintNumber = 0;
120 m_progressBar->setProgress(m_progressBar->progress() + 1);
121 QApplication::processEvents();
122 QCOMPARE(m_progressBar->paintNumber,1);
125 QTEST_MAIN(tst_Q3ProgressBar)
126 #include "tst_q3progressbar.moc"