summaryrefslogtreecommitdiffstats
path: root/tests/auto/qdoc/generatedoutput/tst_generatedoutput.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qdoc/generatedoutput/tst_generatedoutput.cpp')
-rw-r--r--tests/auto/qdoc/generatedoutput/tst_generatedoutput.cpp22
1 files changed, 15 insertions, 7 deletions
diff --git a/tests/auto/qdoc/generatedoutput/tst_generatedoutput.cpp b/tests/auto/qdoc/generatedoutput/tst_generatedoutput.cpp
index 7d87470f6..3237bde26 100644
--- a/tests/auto/qdoc/generatedoutput/tst_generatedoutput.cpp
+++ b/tests/auto/qdoc/generatedoutput/tst_generatedoutput.cpp
@@ -60,6 +60,7 @@ private slots:
void templateParameters();
void scopedEnum();
void dontDocument();
+ void inheritedQmlPropertyGroups();
private:
QScopedPointer<QTemporaryDir> m_outputDir;
@@ -280,23 +281,30 @@ void tst_generatedOutput::ignoresinceVariable()
void tst_generatedOutput::templateParameters()
{
- testAndCompare("testtemplate.qdocconf", "template/testqdoc-test.html "
- "template/foo.html "
- "template/bar.html "
- "template/baz.html");
+ testAndCompare("testtemplate.qdocconf",
+ "template/testqdoc-test.html "
+ "template/foo.html "
+ "template/bar.html "
+ "template/baz.html");
}
void tst_generatedOutput::scopedEnum()
{
- testAndCompare("scopedenum.qdocconf", "scopedenum/testqdoc-test.html");
+ testAndCompare("scopedenum.qdocconf", "scopedenum/testqdoc-test.html");
}
void tst_generatedOutput::dontDocument()
{
- testAndCompare("dontdocument/dontdocument.qdocconf", "dontdocument/classes.html "
- "dontdocument/seenclass.html");
+ testAndCompare("dontdocument/dontdocument.qdocconf",
+ "dontdocument/classes.html "
+ "dontdocument/seenclass.html");
}
+void tst_generatedOutput::inheritedQmlPropertyGroups()
+{
+ testAndCompare("qmlpropertygroups/qmlpropertygroups.qdocconf",
+ "qmlpropertygroups/qml-qdoc-test-anotherchild-members.html");
+}
QTEST_APPLESS_MAIN(tst_generatedOutput)