aboutsummaryrefslogtreecommitdiffstats
path: root/tests/testmodifydocumentation.cpp
diff options
context:
space:
mode:
authorLauro Neto <lauro.neto@openbossa.org>2011-01-13 15:00:12 -0300
committerHugo Parente Lima <hugo.pl@gmail.com>2012-03-09 19:10:13 -0300
commit175871f9468b083a59554394ef2fa72ef6098070 (patch)
tree3d4b63898cda7f93067d8abbeb4960e87001045d /tests/testmodifydocumentation.cpp
parente3f8e67d859a6fd005c3569fb8fc3695ad4029b0 (diff)
Un-hardcode test resources pathsb-0.9.3
Instead of hardcoding (through the __FILE__ macro) use the current application directory to find the resources. The previous scheme didn't allow running the tests when the source code isn't available. List of resources: - a.xml -> testmodifydocumentation - utf8code.txt -> testcodeinjection Reviewer: Luciano Wolf <luciano.wolf@openbossa.org> Reviewer: Hugo Lima <hugo.lima@openbossa.org>
Diffstat (limited to 'tests/testmodifydocumentation.cpp')
-rw-r--r--tests/testmodifydocumentation.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/testmodifydocumentation.cpp b/tests/testmodifydocumentation.cpp
index 33a478650..46151ee88 100644
--- a/tests/testmodifydocumentation.cpp
+++ b/tests/testmodifydocumentation.cpp
@@ -50,7 +50,7 @@ void TestModifyDocumentation::testModifyDocumentation()
QCOMPARE(docMods[0].code().trimmed(), QString("<para>Some changed contents here</para>"));
QCOMPARE(docMods[0].signature(), QString(""));
QtDocParser docParser;
- docParser.setDocumentationDataDirectory(QFileInfo(__FILE__).absoluteDir().absolutePath());
+ docParser.setDocumentationDataDirectory(QCoreApplication::applicationDirPath());
docParser.fillDocumentation(classA);
QVERIFY(!classA->documentation().value().trimmed().isEmpty());