/**************************************************************************** ** ** This file is part of the KD Soap project. ** ** SPDX-FileCopyrightText: 2010 Klarälvdalens Datakonsult AB, a KDAB Group company ** ** SPDX-License-Identifier: MIT ** ****************************************************************************/ #include "KDSoapMessageWriter_p.h" #include class FaultNamespace : public QObject { Q_OBJECT private Q_SLOTS: void testFaultMessageNamespace() { KDSoapMessageWriter writer; KDSoapMessage faultMessage; faultMessage.setFault(true); faultMessage.addArgument("faultCode", "fooCode"); const QByteArray faultString("Fault"); const QByteArray startTag(""); const QByteArray endTag(""); const QByteArray result = writer.messageToXml(faultMessage, faultString, KDSoapHeaders(), QMap()); QVERIFY(result.contains(startTag)); QVERIFY(result.contains(endTag)); } }; QTEST_MAIN(FaultNamespace) #include "test_fault_namespace.moc"