diff --git a/tests/kolabconversationtest.cpp b/tests/kolabconversationtest.cpp index 6835533..21f9abd 100644 --- a/tests/kolabconversationtest.cpp +++ b/tests/kolabconversationtest.cpp @@ -1,47 +1,47 @@ /* Copyright (C) 2014 Sandro Knauß This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ #include "kolabconversationtest.h" #include #include #include #include "src/kolabconversions.h" void KolabConversationTest::configurationDeserialationTest() { boost::shared_ptr ptr = Kolab::KolabObjects::deserializeObject(TEST_DATA_PATH "/testfiles/testConfiguration.xml", true); - QVERIFY(ptr); + QVERIFY(static_cast(ptr)); QVERIFY(ptr->isValid()); QCOMPARE(ptr->type(), Kolab::Configuration::TypeRelation); } void KolabConversationTest::noteDeserialationTest() { boost::shared_ptr ptr = Kolab::KolabObjects::deserializeObject(TEST_DATA_PATH "/testfiles/testNote.xml", true); - QVERIFY(ptr); + QVERIFY(static_cast(ptr)); QVERIFY(ptr->isValid()); QCOMPARE(ptr->summary(), std::string("summarytext")); } QTEST_MAIN( KolabConversationTest ) #include "kolabconversationtest.moc"