mirror of
https://github.com/mapmapteam/mapmap.git
synced 2026-04-01 21:19:39 +02:00
11 lines
164 B
C++
11 lines
164 B
C++
#include "TestMaths.h"
|
|
|
|
void TestMaths::toUpper()
|
|
{
|
|
QString str = "Hello";
|
|
QCOMPARE(str.toUpper(), QString("HELLO"));
|
|
}
|
|
|
|
QTEST_MAIN(TestMaths)
|
|
|