summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/source/beans/xpropertyset.cxx9
1 files changed, 7 insertions, 2 deletions
diff --git a/test/source/beans/xpropertyset.cxx b/test/source/beans/xpropertyset.cxx
index 993b609ec4b4..f8ac7d17f206 100644
--- a/test/source/beans/xpropertyset.cxx
+++ b/test/source/beans/xpropertyset.cxx
@@ -244,8 +244,12 @@ bool XPropertySet::isPropertyValueChangeable(const OUString& rName)
}
else
{
- std::cout << type.getTypeName() << std::endl;
- std::cout << rName << std::endl;
+ std::cout << "Unknown type:\n"
+ "Type: "
+ << type.getTypeName()
+ << "\n"
+ "Name: "
+ << rName << "\n";
CPPUNIT_ASSERT_MESSAGE(
"XPropertySet::isPropertyValueChangeable: unknown type in Any tested.", false);
}
@@ -255,6 +259,7 @@ bool XPropertySet::isPropertyValueChangeable(const OUString& rName)
}
catch (const uno::Exception&)
{
+ std::cout << "Exception thrown while retrieving with property: " << rName << "\n";
CPPUNIT_ASSERT_MESSAGE("XPropertySet::isPropertyValueChangeable: exception thrown while "
"retrieving the property value.",
false);