aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/client/convertertest.cpp8
1 files changed, 6 insertions, 2 deletions
diff --git a/tests/client/convertertest.cpp b/tests/client/convertertest.cpp
index a6a82de..e61caa0 100644
--- a/tests/client/convertertest.cpp
+++ b/tests/client/convertertest.cpp
@@ -169,8 +169,6 @@ private Q_SLOTS:
QVERIFY(compare(QVariantMap({{"fooBar", 0xdeadbeef}}), G_VARIANT_TYPE_VARDICT));
}
- // LIST CHECK!
-
void testBooleanToQVariant()
{
// Boolean
@@ -231,6 +229,12 @@ private Q_SLOTS:
QVERIFY(compare(g_variant_new_string("53"), QVariant::String));
}
+ void testByteArrayToQVariant()
+ {
+ // ByteArray
+ QVERIFY(compare(g_variant_new_bytestring("53"), QVariant::ByteArray));
+ }
+
void testTupleConversion()
{
QVariantList qTuple;