aboutsummaryrefslogtreecommitdiff
path: root/tests/client/modeltest.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/client/modeltest.cpp')
-rw-r--r--tests/client/modeltest.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/client/modeltest.cpp b/tests/client/modeltest.cpp
index 9f6ee76..ebcec34 100644
--- a/tests/client/modeltest.cpp
+++ b/tests/client/modeltest.cpp
@@ -202,6 +202,16 @@ private Q_SLOTS:
v = extra["string"];
QCOMPARE(v.type(), QVariant::String);
QCOMPARE(v.toString(), QString("42"));
+
+ // Map
+ v = extra["map"];
+ QVariantMap map;
+ map.insert("int64", QVariant::fromValue<long>(-42));
+ map.insert("string", "42");
+ map.insert("double", 42.42);
+
+ QCOMPARE(v.type(), QVariant::Map);
+ QCOMPARE(v.toMap(), map);
}
};