1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80
|
/*
SPDX-FileCopyrightText: 2012 Benjamin Port <benjamin.port@ben2367.fr>
SPDX-License-Identifier: LGPL-2.0-or-later
*/
#include <kplotaxis.h>
#include <QTest>
class KPlotAxisTest : public QObject
{
Q_OBJECT
private Q_SLOTS:
void initTestCase()
{
m_kPlotAxis = new KPlotAxis(QStringLiteral("label"));
}
void cleanupTestCase()
{
delete m_kPlotAxis;
}
void testVisible()
{
m_kPlotAxis->setVisible(true);
QCOMPARE(m_kPlotAxis->isVisible(), true);
m_kPlotAxis->setVisible(false);
QCOMPARE(m_kPlotAxis->isVisible(), false);
}
void testTickLabelsShown()
{
m_kPlotAxis->setTickLabelsShown(true);
QCOMPARE(m_kPlotAxis->areTickLabelsShown(), true);
m_kPlotAxis->setTickLabelsShown(false);
QCOMPARE(m_kPlotAxis->areTickLabelsShown(), false);
}
void testLabel()
{
QCOMPARE(m_kPlotAxis->label(), QString::fromLatin1("label"));
m_kPlotAxis->setLabel(QStringLiteral("newLabel"));
QCOMPARE(m_kPlotAxis->label(), QString::fromLatin1("newLabel"));
}
void testTickLabelFormat()
{
m_kPlotAxis->setTickLabelFormat('e', 3, 2);
QCOMPARE(m_kPlotAxis->tickLabelFormat(), 'e');
QCOMPARE(m_kPlotAxis->tickLabelWidth(), 3);
QCOMPARE(m_kPlotAxis->tickLabelPrecision(), 2);
}
void testTickMarks()
{
m_kPlotAxis->setTickMarks(0.0, 12.0);
QCOMPARE(m_kPlotAxis->majorTickMarks(), QList<double>() << 0.0 << 4.0 << 8.0 << 12.0);
QCOMPARE(m_kPlotAxis->minorTickMarks(), QList<double>() << 1.0 << 2.0 << 3.0 << 5.0 << 6.0 << 7.0 << 9.0 << 10.0 << 11.0);
m_kPlotAxis->setTickMarks(0.0, 120.0);
QCOMPARE(m_kPlotAxis->majorTickMarks(), QList<double>() << 0.0 << 40.0 << 80.0 << 120.0);
QCOMPARE(m_kPlotAxis->minorTickMarks(), QList<double>() << 10.0 << 20.0 << 30.0 << 50.0 << 60.0 << 70.0 << 90.0 << 100.0 << 110.0);
m_kPlotAxis->setTickMarks(4.0, 29.0); // from 4 to 4+29 = 33
QCOMPARE(m_kPlotAxis->majorTickMarks(), QList<double>() << 5.0 << 10.0 << 15.0 << 20.0 << 25.0 << 30.0);
}
private:
KPlotAxis *m_kPlotAxis;
};
QTEST_MAIN(KPlotAxisTest)
#include "kplotaxistest.moc"
|