---
test/test-stk-menu | 12 ++++++++++++
1 files changed, 12 insertions(+), 0 deletions(-)
diff --git a/test/test-stk-menu b/test/test-stk-menu
index 916a527..456a522 100755
--- a/test/test-stk-menu
+++ b/test/test-stk-menu
@@ -138,6 +138,18 @@ class StkAgent(dbus.service.Object):
def Cancel(self):
print "Cancel"
+ @dbus.service.method("org.ofono.SimToolkitAgent",
+ in_signature="ssy", out_signature="")
+
+ def PlayTone(self, tone, text, icon):
+ print "playtone is %s" % (tone)
+
+ @dbus.service.method("org.ofono.SimToolkitAgent",
+ in_signature="ssy",
out_signature="")
+
+ def LoopTone(self, tone, text, icon):
+ print "the loop tone is %s" % (tone)
+
if __name__ == '__main__':
dbus.mainloop.glib.DBusGMainLoop(set_as_default=True)
--
1.6.5.2