Go to the documentation of this file. 23 void Test_MyClass::min()
26 QCOMPARE(myClass.
min(25, 0), 0);
27 QCOMPARE(myClass.
min(-12, -5), -12);
28 QCOMPARE(myClass.
min(2007, 2007), 2007);
29 QCOMPARE(myClass.
min(-12, 5), -12);
33 void Test_MyClass::max()
36 QCOMPARE(myClass.
max(25, 0), 25);
37 QCOMPARE(myClass.
max(-12, -5), -5);
38 QCOMPARE(myClass.
max(2007, 2007), 2007);
39 QCOMPARE(myClass.
max(-12, 5), 5);