summaryrefslogtreecommitdiff
path: root/tests/testProtocolClient.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/testProtocolClient.cpp')
-rw-r--r--tests/testProtocolClient.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/testProtocolClient.cpp b/tests/testProtocolClient.cpp
index 07a728d4..24ea5b8a 100644
--- a/tests/testProtocolClient.cpp
+++ b/tests/testProtocolClient.cpp
@@ -18,6 +18,13 @@ void runTest(amb::AmbRemoteClient *c)
DebugOut(0) << "list call reply" << endl;
g_assert(supported.size() == 2);
});
+
+ DebugOut(0) << "calling client->get()" << endl;
+ c->get("interface1", [](amb::Object &obj)
+ {
+ DebugOut(0) << "get call reply" << endl;
+ g_assert(obj.size() == 3);
+ });
}
int main(int argc, char** argv)