summaryrefslogtreecommitdiffstats
path: root/tests/auto/corelib/xml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/corelib/xml')
-rw-r--r--tests/auto/corelib/xml/qxmlstream/data/namespaceCDATA.ref16
-rw-r--r--tests/auto/corelib/xml/qxmlstream/data/namespaceCDATA.xml4
-rw-r--r--tests/auto/corelib/xml/qxmlstream/tst_qxmlstream.cpp8
3 files changed, 14 insertions, 14 deletions
diff --git a/tests/auto/corelib/xml/qxmlstream/data/namespaceCDATA.ref b/tests/auto/corelib/xml/qxmlstream/data/namespaceCDATA.ref
index 9734d22276..132875f4bb 100644
--- a/tests/auto/corelib/xml/qxmlstream/data/namespaceCDATA.ref
+++ b/tests/auto/corelib/xml/qxmlstream/data/namespaceCDATA.ref
@@ -1,21 +1,21 @@
StartDocument( )
DTD( text="<!DOCTYPE footype [
- <!ATTLIST foo xmlns CDATA #FIXED "http://qt.nokia.com">
- <!ATTLIST pre:bar xmlns:pre CDATA #FIXED "http://qt.nokia.com">
+ <!ATTLIST foo xmlns CDATA #FIXED "http://qt-project.org">
+ <!ATTLIST pre:bar xmlns:pre CDATA #FIXED "http://qt-project.org">
]>" dtdName="footype" )
StartElement( name="body" qualifiedName="body" )
Characters( whitespace text="
" )
-StartElement( name="foo" namespaceUri="http://qt.nokia.com" qualifiedName="foo"
- NamespaceDeclaration( namespaceUri="http://qt.nokia.com" )
+StartElement( name="foo" namespaceUri="http://qt-project.org" qualifiedName="foo"
+ NamespaceDeclaration( namespaceUri="http://qt-project.org" )
)
-EndElement( name="foo" namespaceUri="http://qt.nokia.com" qualifiedName="foo" )
+EndElement( name="foo" namespaceUri="http://qt-project.org" qualifiedName="foo" )
Characters( whitespace text="
" )
-StartElement( name="bar" namespaceUri="http://qt.nokia.com" qualifiedName="pre:bar" prefix="pre"
- NamespaceDeclaration( prefix="pre" namespaceUri="http://qt.nokia.com" )
+StartElement( name="bar" namespaceUri="http://qt-project.org" qualifiedName="pre:bar" prefix="pre"
+ NamespaceDeclaration( prefix="pre" namespaceUri="http://qt-project.org" )
)
-EndElement( name="bar" namespaceUri="http://qt.nokia.com" qualifiedName="pre:bar" )
+EndElement( name="bar" namespaceUri="http://qt-project.org" qualifiedName="pre:bar" )
Characters( whitespace text="
" )
EndElement( name="body" qualifiedName="body" )
diff --git a/tests/auto/corelib/xml/qxmlstream/data/namespaceCDATA.xml b/tests/auto/corelib/xml/qxmlstream/data/namespaceCDATA.xml
index 6475dbcdca..9b78623a6c 100644
--- a/tests/auto/corelib/xml/qxmlstream/data/namespaceCDATA.xml
+++ b/tests/auto/corelib/xml/qxmlstream/data/namespaceCDATA.xml
@@ -1,6 +1,6 @@
<!DOCTYPE footype [
- <!ATTLIST foo xmlns CDATA #FIXED "http://qt.nokia.com">
- <!ATTLIST pre:bar xmlns:pre CDATA #FIXED "http://qt.nokia.com">
+ <!ATTLIST foo xmlns CDATA #FIXED "http://qt-project.org">
+ <!ATTLIST pre:bar xmlns:pre CDATA #FIXED "http://qt-project.org">
]>
<body>
<foo/>
diff --git a/tests/auto/corelib/xml/qxmlstream/tst_qxmlstream.cpp b/tests/auto/corelib/xml/qxmlstream/tst_qxmlstream.cpp
index 73f89115af..d2e090bf53 100644
--- a/tests/auto/corelib/xml/qxmlstream/tst_qxmlstream.cpp
+++ b/tests/auto/corelib/xml/qxmlstream/tst_qxmlstream.cpp
@@ -224,7 +224,7 @@ static QString documentElement(const QByteArray &document)
* Since this suite is fairly large, it runs the tests sequentially in order to not
* have them all loaded into memory at once. In this way, the maximum memory usage stays
* low, which means one can run valgrind on this test. However, the drawback is that
- * QTestLib's usual error reporting and testing mechanisms are slightly bypassed.
+ * Qt Test's usual error reporting and testing mechanisms are slightly bypassed.
*
* Part of this code is a manual, ad-hoc implementation of xml:base.
*
@@ -611,11 +611,11 @@ void tst_QXmlStream::reportFailures_data()
QTest::addColumn<QString>("description");
/* We loop over all our failures(if any!), and output them such
- * that they appear in the QTestLib log. */
+ * that they appear in the Qt Test log. */
for(int i = 0; i < len; ++i)
QTest::newRow(m_handler.failures.at(i).first.toLatin1().constData()) << true << m_handler.failures.at(i).second;
- /* We need to add at least one column of test data, otherwise QTestLib complains. */
+ /* We need to add at least one column of test data, otherwise Qt Test complains. */
if(len == 0)
QTest::newRow("Whole test suite passed") << false << QString();
@@ -1140,7 +1140,7 @@ void tst_QXmlStream::crashInUTF16Codec() const
}
/*
- In addition to QTestLib's flags, one can specify "-c <filename>" and have that file output in its canonical form.
+ In addition to Qt Test's flags, one can specify "-c <filename>" and have that file output in its canonical form.
*/
int main(int argc, char *argv[])
{