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
|
/*
SPDX-FileCopyrightText: 2015 Elvis Angelaccio <elvis.angelaccio@kde.org>
SPDX-License-Identifier: GPL-2.0-or-later
*/
#include "teststopwatch.h"
#include "stopwatch.h"
#include <QTime>
void TestStopwatch::testInactive()
{
Stopwatch stopwatch;
QVERIFY(!stopwatch.isRunning());
QVERIFY(!stopwatch.isPaused());
QVERIFY(stopwatch.isInactive());
}
void TestStopwatch::testRunning()
{
Stopwatch stopwatch;
stopwatch.start();
QVERIFY(stopwatch.isRunning());
QVERIFY(!stopwatch.isPaused());
QVERIFY(!stopwatch.isInactive());
}
void TestStopwatch::testPaused()
{
Stopwatch stopwatch;
stopwatch.pause();
QVERIFY(!stopwatch.isRunning());
QVERIFY(stopwatch.isPaused());
QVERIFY(!stopwatch.isInactive());
}
void TestStopwatch::testReset()
{
Stopwatch stopwatch;
stopwatch.reset();
QVERIFY(!stopwatch.isRunning());
QVERIFY(!stopwatch.isPaused());
QVERIFY(stopwatch.isInactive());
}
void TestStopwatch::testInitialize()
{
Stopwatch s1, s2;
s1.start();
QTest::qSleep(100);
s1.pause();
int t = s1.raw();
QVERIFY(s2.initialize(t));
QVERIFY(s2.isPaused());
QCOMPARE(s2.raw(), t);
}
QTEST_MAIN(TestStopwatch)
|