aboutsummaryrefslogtreecommitdiff
path: root/example
diff options
context:
space:
mode:
Diffstat (limited to 'example')
-rw-r--r--example/tests/tests.cpp6
-rw-r--r--example/tests/tests.h1
2 files changed, 7 insertions, 0 deletions
diff --git a/example/tests/tests.cpp b/example/tests/tests.cpp
index 86c6d4c9..de48ef62 100644
--- a/example/tests/tests.cpp
+++ b/example/tests/tests.cpp
@@ -377,6 +377,12 @@ void TestXmlRpc::testInt()
QByteArray("<value><i4>-12</i4></value>"));
}
+void TestXmlRpc::testNil()
+{
+ checkVariant(QVariant(),
+ QByteArray("<value><nil/></value>"));
+}
+
void TestXmlRpc::testString()
{
checkVariant(QString("hello world"),
diff --git a/example/tests/tests.h b/example/tests/tests.h
index d7367628..7e50cf1c 100644
--- a/example/tests/tests.h
+++ b/example/tests/tests.h
@@ -69,6 +69,7 @@ private slots:
void testDateTime();
void testDouble();
void testInt();
+ void testNil();
void testString();
void testArray();