vocabulary: moving from 'plugin' to 'binding'
[src/app-framework-binder.git] / doc / afb-tests-overview.md
index 4ea2527..4fc0c9b 100644 (file)
@@ -1,23 +1,28 @@
-# Overview of tests shipped with AFB-Daemon
+Overview of tests shipped with AFB-Daemon
+=========================================
     Version: 1
-    Date:    30 mai 2016
+    Date:    09 juin 2016
     Author:  Manuel Bachmann
 
 
-## List of tests
+List of tests
+-------------
 
 Here are the tests shipped in the source tree:
 
 * **afb-client-demo** (command-line WebSockets)
+
 * **token-websock.qml** (Qt/QML WebSockets)
+
 * ***.html** (HTML5/JS HTTP-REST & WebSockets)
 
 
-## Detail of tests
+Detail of tests
+---------------
 
 ### afb-client-demo (command-line WebSockets)
 
-This clients interactively calls plugins APIs from the command line, using the binder
+This clients interactively calls bindings APIs from the command line, using the binder
 [WebSockets](https://en.wikipedia.org/wiki/WebSocket) facility.
 
 If _afb-daemon_ has been launched with the following parameters:
@@ -30,7 +35,7 @@ Then run the client with :
 
     afb-client-demo ws://localhost:1234/api?token=123456 [<api> <verb> [<json-data>]]
 
-For instance, to initialize the Audio plugin from the command line :
+For instance, to initialize the Audio binding from the command line :
 
     afb-client-demo ws://localhost:1234/api?token=123456
 
@@ -38,7 +43,7 @@ The command doesn't return. You should type requests of type <api> <verb> [<json
 So, try:
 
     auth connect
-    audio init
+    hello pingjson true
 
 <br />