1/****************************************************************************
2**
3** Copyright (C) 2016 The Qt Company Ltd.
4** Contact: https://www.qt.io/licensing/
5**
6** This file is part of the WBMP plugin in the Qt ImageFormats module.
7**
8** $QT_BEGIN_LICENSE:GPL-EXCEPT$
9** Commercial License Usage
10** Licensees holding valid commercial Qt licenses may use this file in
11** accordance with the commercial license agreement provided with the
12** Software or, alternatively, in accordance with the terms contained in
13** a written agreement between you and The Qt Company. For licensing terms
14** and conditions see https://www.qt.io/terms-conditions. For further
15** information use the contact form at https://www.qt.io/contact-us.
16**
17** GNU General Public License Usage
18** Alternatively, this file may be used under the terms of the GNU
19** General Public License version 3 as published by the Free Software
20** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
21** included in the packaging of this file. Please review the following
22** information to ensure the GNU General Public License requirements will
23** be met: https://www.gnu.org/licenses/gpl-3.0.html.
24**
25** $QT_END_LICENSE$
26**
27****************************************************************************/
28
29#include <QtTest/QtTest>
30#include <QtGui/QtGui>
31
32class tst_qwbmp: public QObject
33{
34 Q_OBJECT
35
36private slots:
37 void initTestCase();
38 void readImage_data();
39 void readImage();
40};
41
42void tst_qwbmp::initTestCase()
43{
44 if (!QImageReader::supportedImageFormats().contains(t: "wbmp"))
45 QSKIP("The image format handler is not installed.");
46}
47
48void tst_qwbmp::readImage_data()
49{
50 QTest::addColumn<QString>(name: "fileName");
51 QTest::addColumn<QSize>(name: "size");
52
53 QTest::newRow(dataTag: "qt-logo-small") << QString("qt-logo-small.wbmp") << QSize(123, 103);
54 QTest::newRow(dataTag: "qt-logo-big") << QString("qt-logo-big.wbmp") << QSize(250, 250);
55}
56
57void tst_qwbmp::readImage()
58{
59 QFETCH(QString, fileName);
60 QFETCH(QSize, size);
61
62 QString path = QString(":/wbmp/") + fileName;
63 QImageReader reader(path);
64 QVERIFY(reader.canRead());
65 QImage image = reader.read();
66 QVERIFY(!image.isNull());
67 QCOMPARE(image.size(), size);
68}
69
70QTEST_MAIN(tst_qwbmp)
71
72#include "tst_qwbmp.moc"
73

source code of qtimageformats/tests/auto/wbmp/tst_qwbmp.cpp