add QPainterPathStroker test

Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
This commit is contained in:
Ivailo Monev 2021-11-26 18:46:04 +02:00
parent 0861282369
commit 6c6dd248bf
2 changed files with 53 additions and 0 deletions

View file

@ -0,0 +1,3 @@
katie_gui_test(tst_qpainterpathstroker
${CMAKE_CURRENT_SOURCE_DIR}/tst_qpainterpathstroker.cpp
)

View file

@ -0,0 +1,50 @@
/****************************************************************************
**
** Copyright (C) 2015 The Qt Company Ltd.
** Copyright (C) 2016 Ivailo Monev
**
** This file is part of the test suite of the Katie Toolkit.
**
** $QT_BEGIN_LICENSE:LGPL$
**
** GNU Lesser General Public License Usage
** This file may be used under the terms of the GNU Lesser
** General Public License version 2.1 as published by the Free Software
** Foundation and appearing in the file LICENSE.LGPL included in the
** packaging of this file. Please review the following information to
** ensure the GNU Lesser General Public License version 2.1 requirements
** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
**
** $QT_END_LICENSE$
**
****************************************************************************/
#include <QtTest/QtTest>
#include <QPainterPathStroker>
//TESTED_CLASS=
//TESTED_FILES=
class tst_QPainterPathStroker : public QObject
{
Q_OBJECT
public:
private slots:
void strokeEmptyPath();
};
void tst_QPainterPathStroker::strokeEmptyPath()
{
QPainterPath path;
path.moveTo(10, 10);
path.lineTo(10, 10);
QPainterPathStroker stroker;
QCOMPARE(stroker.createStroke(path), path);
}
QTEST_APPLESS_MAIN(tst_QPainterPathStroker)
#include "moc_tst_qpainterpathstroker.cpp"