We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3b9540e commit 556854fCopy full SHA for 556854f
tests/src/core/testqgsapplication.cpp
@@ -7,19 +7,15 @@
7
8
class TestQgsApplication: public QObject
9
{
10
- Q_OBJECT;
11
- public:
12
- private slots:
13
- void authorsFilePath();
+ Q_OBJECT;
+ private slots:
+ void authorsFilePath()
+ {
14
+ QString myPath = QgsApplication::authorsFilePath();
15
+ QVERIFY(!myPath.isNull());
16
+ }
17
};
18
-
-void TestQgsApplication::authorsFilePath()
-{
19
- QString myPath = QgsApplication::authorsFilePath();
20
- QVERIFY(!myPath.isNull());
21
-}
22
23
QTEST_MAIN(TestQgsApplication)
24
#include "testqgsapplication.moc.cpp"
25
0 commit comments