summaryrefslogtreecommitdiff
path: root/sd
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.co.uk>2016-05-19 08:54:06 +0200
committerMiklos Vajna <vmiklos@collabora.co.uk>2016-05-19 08:28:22 +0000
commit71b74f8fd1fc84cf92dddeab02647b8b765d0d4a (patch)
treeae425ed37b9466239b35eec987f668151f7f0228 /sd
parent7b24f21a46d8f9321434e40e6f9821df0ed2e2d3 (diff)
CppunitTest_sd_uimpress: fix loplugin:cppunitassertequals warnings
Change-Id: I173cec0fc3ca9d8501537f38399ef034bde1482c Reviewed-on: https://gerrit.libreoffice.org/25129 Reviewed-by: Miklos Vajna <vmiklos@collabora.co.uk> Tested-by: Jenkins <ci@libreoffice.org>
Diffstat (limited to 'sd')
-rw-r--r--sd/qa/unit/uimpress.cxx16
1 files changed, 8 insertions, 8 deletions
diff --git a/sd/qa/unit/uimpress.cxx b/sd/qa/unit/uimpress.cxx
index af06d8cb1367..10f6aa74c998 100644
--- a/sd/qa/unit/uimpress.cxx
+++ b/sd/qa/unit/uimpress.cxx
@@ -85,19 +85,19 @@ void Test::testAddPage()
{
SdrPage* pPage = m_pDoc->AllocPage(false);
m_pDoc->InsertPage(pPage);
- CPPUNIT_ASSERT_MESSAGE("added one page to model",
- m_pDoc->GetPageCount()==1);
+ CPPUNIT_ASSERT_EQUAL_MESSAGE("added one page to model",
+ static_cast<sal_uInt16>(1), m_pDoc->GetPageCount());
m_pDoc->DeletePage(0);
- CPPUNIT_ASSERT_MESSAGE("removed one page to model",
- m_pDoc->GetPageCount()==0);
+ CPPUNIT_ASSERT_EQUAL_MESSAGE("removed one page to model",
+ static_cast<sal_uInt16>(0), m_pDoc->GetPageCount());
SdrPage* pMasterPage = m_pDoc->AllocPage(true);
m_pDoc->InsertMasterPage(pMasterPage);
- CPPUNIT_ASSERT_MESSAGE("added one master page to model",
- m_pDoc->GetMasterPageCount()==1);
+ CPPUNIT_ASSERT_EQUAL_MESSAGE("added one master page to model",
+ static_cast<sal_uInt16>(1), m_pDoc->GetMasterPageCount());
m_pDoc->DeleteMasterPage(0);
- CPPUNIT_ASSERT_MESSAGE("removed one master page to model",
- m_pDoc->GetMasterPageCount()==0);
+ CPPUNIT_ASSERT_EQUAL_MESSAGE("removed one master page to model",
+ static_cast<sal_uInt16>(0), m_pDoc->GetMasterPageCount());
}
void Test::testCustomShow()