| 671 | //} |
| 672 | |
| 673 | void ExpressionParserTest::testLog2() { |
| 674 | auto fnct = getFunction1(QStringLiteral("log2")); |
| 675 | QVERIFY(fnct); |
| 676 | |
| 677 | QCOMPARE(fnct(2), 1.); |
| 678 | QCOMPARE(fnct(10), 3.32192809489); |
| 679 | } |
| 680 | |
| 681 | void ExpressionParserTest::testPolarCircle() { |
| 682 | auto* parser = ExpressionParser::getInstance(); |
nothing calls this directly
no test coverage detected