Home · All Classes · Main Classes · Grouped Classes · Modules · Functions

testqstring.cpp Example File
qtestlib/tutorial2/testqstring.cpp

    #include <QtTest/QtTest>

    class TestQString: public QObject
    {
        Q_OBJECT

    private slots:
        void toUpper_data();
        void toUpper();
    };

    void TestQString::toUpper_data()
    {
        QTest::addColumn<QString>("string");
        QTest::addColumn<QString>("result");

        QTest::newRow("all lower") << "hello" << "HELLO";
        QTest::newRow("mixed")     << "Hello" << "HELLO";
        QTest::newRow("all upper") << "HELLO" << "HELLO";
    }

    void TestQString::toUpper()
    {
        QFETCH(QString, string);
        QFETCH(QString, result);

        QCOMPARE(string.toUpper(), result);
    }

    QTEST_MAIN(TestQString)
    #include "testqstring.moc"


Copyright © 2005 Trolltech Trademarks
Qt 4.1.0
Hosted by uCoz