/* * Copyright (c) 2017 Tarun Gupta * Licensed under the simplified BSD license. * See Documentation/Licenses/BSD-simplified.txt for more information. */ #include #include using namespace Swift; TEST(MIXDestroySerializerTest, XEP0369_Example31) { MIXDestroySerializer testling; auto destroy = std::make_shared(); destroy->setChannel(std::string("coven")); std::string expectedResult = ""; ASSERT_EQ(expectedResult, testling.serialize(destroy)); }