Kaydet (Commit) dd1a82e5 authored tarafından Norbert Thiebaud's avatar Norbert Thiebaud

rtfimport test: add message with the value found on top of expected

Change-Id: Ic17d66bd2b9f4cc4124b13ef7c962649d83ee60c
üst 483a36f4
......@@ -898,8 +898,11 @@ DECLARE_RTFIMPORT_TEST(testFdo52989, "fdo52989.rtf")
{
// Same as n#192129, but for JPEG files.
uno::Reference<drawing::XShape> xShape(getShape(1), uno::UNO_QUERY);
OString aMessage("xShape->getSize().Width() = ");
aMessage += OString::number(xShape->getSize().Width);
// This was 2, should be 423 (or 369?).
CPPUNIT_ASSERT(xShape->getSize().Width >= 369);
CPPUNIT_ASSERT_MESSAGE(aMessage.getStr(), xShape->getSize().Width >= 369);
}
DECLARE_RTFIMPORT_TEST(testFdo48442, "fdo48442.rtf")
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment