diff options
Diffstat (limited to 'conf.d/controller/lua.d/helloworld.lua')
-rw-r--r-- | conf.d/controller/lua.d/helloworld.lua | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/conf.d/controller/lua.d/helloworld.lua b/conf.d/controller/lua.d/helloworld.lua index 8fcf077..bffb230 100644 --- a/conf.d/controller/lua.d/helloworld.lua +++ b/conf.d/controller/lua.d/helloworld.lua @@ -55,5 +55,8 @@ _AFT.testVerbStatusSuccess('testEventPushanotherEvent', 'hello', 'eventpush', {t _AFT.testVerbStatusSuccess('testGenerateWarning', 'hello', 'verbose', {level = 4, message = 'My Warning message!'}) -_AFT.testEvtReceived("testanEventReceived", "hello/anEvent",3000000) -_AFT.testEvtReceived("testanotherEventReceived", "hello/anotherEvent",3000000) +_AFT.testEvtGrpReceived("testEventGroupReceived",{"hello/anEvent","hello/anotherEvent"},300000) +_AFT.testEvtGrpNotReceived("testEventGroupNotReceived",{"hello/anEvent","hello/anotherEvent"},300000) + +_AFT.testEvtReceived("testanEventReceived", "hello/anEvent",300000) +_AFT.testEvtReceived("testanotherEventReceived", "hello/anotherEvent",300000) |