From f8129b73691310f4576c7033310d59d4b80fefb3 Mon Sep 17 00:00:00 2001 From: CorentinLGS Date: Mon, 6 Aug 2018 11:31:27 +0200 Subject: Tested and added doc on updated assertEvtGrpReceived functions - Tested changed assertEvtGrpReceived functions - Updated doc about it Change-Id: I91725152e54ebba9d65e501da54a72801699c760 Signed-off-by: Corentin Le Gall --- docs/WriteYourTests/Reference/0_BindingTestFunctions.md | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) (limited to 'docs/WriteYourTests/Reference/0_BindingTestFunctions.md') diff --git a/docs/WriteYourTests/Reference/0_BindingTestFunctions.md b/docs/WriteYourTests/Reference/0_BindingTestFunctions.md index da8f014..8da86da 100644 --- a/docs/WriteYourTests/Reference/0_BindingTestFunctions.md +++ b/docs/WriteYourTests/Reference/0_BindingTestFunctions.md @@ -89,14 +89,12 @@ received, you have to register the event with the test framework using **_AFT.addEventToMonitor** function. - Check if events has been correctly received in time (timeout in µs). An - event name use the application framework naming scheme: **api/event_name**. - -* **_AFT.testGrpEvtNotReceived(testName, eventGrp, timeout, setUp, tearDown)** + The table has to have this format: + ```lua + eventGrp = {["api/event_name_1"]=1,["api/event_name_2"]=2,["api/event_name_3"]=5} + ``` + As you can see, in the table, event names are table keys and the value stored are + the number of time that the events have to be received. - Prior to be able to check that a group of event (a table of event) has not - been received, you have to register the event with the test framework using - **_AFT.addEventToMonitor** function. - - Check if event has not been correctly received in time (timeout in µs). An + Check if events has been correctly received in time (timeout in µs). An event name use the application framework naming scheme: **api/event_name**. \ No newline at end of file -- cgit 1.2.3-korg