/* * Copyright (c) 2010-2016 Isode Limited. * All rights reserved. * See the COPYING file for more information. */ #include #include #include using namespace Swift; class CapsInfoSerializerTest : public CppUnit::TestFixture { CPPUNIT_TEST_SUITE(CapsInfoSerializerTest); CPPUNIT_TEST(testSerialize); CPPUNIT_TEST_SUITE_END(); public: CapsInfoSerializerTest() {} void testSerialize() { CapsInfoSerializer testling; std::shared_ptr priority(new CapsInfo("http://swift.im", "myversion", "sha-1")); CPPUNIT_ASSERT_EQUAL(std::string(""), testling.serialize(priority)); } }; CPPUNIT_TEST_SUITE_REGISTRATION(CapsInfoSerializerTest);