diff options
author | Markus Mohrhard <markus.mohrhard@collabora.co.uk> | 2015-02-11 23:14:26 +0100 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2015-02-11 23:20:59 +0100 |
commit | 22fe5da5423b39908d78825185dc5991d39385d1 (patch) | |
tree | 47706839461a5f178c6518b0f88ebcda04f47cef /postprocess | |
parent | 8e2293e06adba3f22e824acad99983fb5b997e4d (diff) |
add log message about untested services
Change-Id: I3e8da0ae510ce40421767de2bd106d39ec254a17
Diffstat (limited to 'postprocess')
-rw-r--r-- | postprocess/qa/services.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/postprocess/qa/services.cxx b/postprocess/qa/services.cxx index f6a07e497502..7e3207ee8572 100644 --- a/postprocess/qa/services.cxx +++ b/postprocess/qa/services.cxx @@ -81,6 +81,7 @@ void ServicesTest::test() Reference< XServiceTypeDescription2 > xDesc( xTypeManager->getByHierarchicalName(s[i]), UNO_QUERY_THROW); Sequence< Reference< XServiceConstructorDescription > > xseq = xDesc->getConstructors(); + SAL_WARN_IF(xseq.getLength() == 0, "postprocess.cppunit", "not tested because there is no constructor"); for (sal_Int32 c = 0; c < xseq.getLength(); c++) if (!xseq[c]->getParameters().hasElements()) { |