From 71b74f8fd1fc84cf92dddeab02647b8b765d0d4a Mon Sep 17 00:00:00 2001 From: Miklos Vajna Date: Thu, 19 May 2016 08:54:06 +0200 Subject: CppunitTest_sd_uimpress: fix loplugin:cppunitassertequals warnings Change-Id: I173cec0fc3ca9d8501537f38399ef034bde1482c Reviewed-on: https://gerrit.libreoffice.org/25129 Reviewed-by: Miklos Vajna Tested-by: Jenkins --- sd/qa/unit/uimpress.cxx | 16 ++++++++-------- 1 file 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(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(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(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(0), m_pDoc->GetMasterPageCount()); } void Test::testCustomShow() -- cgit