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 --- conf.d/controller/lua.d/helloworld.lua | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'conf.d/controller') diff --git a/conf.d/controller/lua.d/helloworld.lua b/conf.d/controller/lua.d/helloworld.lua index bffb230..41ba603 100644 --- a/conf.d/controller/lua.d/helloworld.lua +++ b/conf.d/controller/lua.d/helloworld.lua @@ -55,8 +55,9 @@ _AFT.testVerbStatusSuccess('testEventPushanotherEvent', 'hello', 'eventpush', {t _AFT.testVerbStatusSuccess('testGenerateWarning', 'hello', 'verbose', {level = 4, message = 'My Warning message!'}) -_AFT.testEvtGrpReceived("testEventGroupReceived",{"hello/anEvent","hello/anotherEvent"},300000) -_AFT.testEvtGrpNotReceived("testEventGroupNotReceived",{"hello/anEvent","hello/anotherEvent"},300000) +_AFT.testEvtGrpReceived("testEventGroupReceived",{["hello/anEvent"]=1,["hello/anotherEvent"]=1},300000) +_AFT.testEvtGrpReceived("testEventGroupReceived",{["hello/anEvent"]=2,["hello/anotherEvent"]=1},300000) +_AFT.testEvtGrpReceived("testEventGroupReceived",{["hello/anEvent"]=0,["hello/anotherEvent"]=0},300000) _AFT.testEvtReceived("testanEventReceived", "hello/anEvent",300000) _AFT.testEvtReceived("testanotherEventReceived", "hello/anotherEvent",300000) -- cgit 1.2.3-korg