14 lines
271 B
C++
14 lines
271 B
C++
|
|
#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();
|
||
|
|
}
|