This repository has been archived on 2025-12-24. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
yachat/qa/unittest/unittestutil.cpp

14 lines
271 B
C++
Raw Normal View History

2025-12-25 01:37:49 +05:00
#include <QDebug>
#include "unittestutil.h"
QDomElement UnitTestUtil::createElement(const QString& text)
{
QDomDocument doc;
if (!doc.setContent(text)) {
qWarning() << "Unable to parse element: " << text;
return QDomElement();
}
return doc.documentElement();
}