Files
mapmap/tests/TestMaths.cpp
2017-08-01 02:33:01 +00:00

11 lines
164 B
C++

#include "TestMaths.h"
void TestMaths::toUpper()
{
QString str = "Hello";
QCOMPARE(str.toUpper(), QString("HELLO"));
}
QTEST_MAIN(TestMaths)