summaryrefslogtreecommitdiff
path: root/sd/qa/unit
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.co.uk>2016-05-19 08:54:06 +0200
committerAshod Nakashian <ashod.nakashian@collabora.co.uk>2016-07-12 22:06:15 -0400
commit6d4d984a2b72f8d6313eb6bc788d7e5130c7f18e (patch)
tree15fb09a66301df2d0b89b7475b75f65cabd37733 /sd/qa/unit
parent8a365018ca42c0dd9509842dd6db9678b37ce152 (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> (cherry picked from commit 71b74f8fd1fc84cf92dddeab02647b8b765d0d4a)
Diffstat (limited to 'sd/qa/unit')
-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()