diff options
author | Frederic Marec <frederic.marec@iot.bzh> | 2019-04-09 17:52:22 +0200 |
---|---|---|
committer | Frederic Marec <frederic.marec@iot.bzh> | 2019-10-15 09:26:33 +0200 |
commit | 5c3503e35c1b883e97ed6874f7683d0a7b5938b7 (patch) | |
tree | b60edf018576488f271f588be86202aba93b7638 /docs/4_Tests_Examples.md | |
parent | 993277e2c6c842b3344b486eb934c1bcb1156aed (diff) |
Fix event management in test frameworkicefish_8.99.3icefish_8.99.2icefish_8.99.1icefish/8.99.3icefish/8.99.2icefish/8.99.18.99.38.99.28.99.1
Fix event receive
Fix event not receive
Fix lockwait event
Remove trailing indentation
Bug-AGL: SPEC-2374
Change-Id: Ie64b23c242bc13dcf7af96ff3ed2316bf6cad5f7
Signed-off-by: Frederic Marec <frederic.marec@iot.bzh>
Diffstat (limited to 'docs/4_Tests_Examples.md')
-rw-r--r-- | docs/4_Tests_Examples.md | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/4_Tests_Examples.md b/docs/4_Tests_Examples.md index caccea4..a68fb9f 100644 --- a/docs/4_Tests_Examples.md +++ b/docs/4_Tests_Examples.md @@ -43,6 +43,8 @@ The example will run some basics tests on API verb calls and events received. _AFT.testVerbStatusSuccess('testEventSub', 'hello', 'eventsub', {tag = 'evt'}) _AFT.testVerbStatusSuccess('testEventPush', 'hello', 'eventpush', {tag = 'evt', data = { key = 'weird others data', another_key = 123.456}}) + _AFT.testVerbStatusSkipped('testEventSub', 'hello', 'eventsub', {tag = 'evt'}) + _AFT.testVerbStatusSuccess('testGenerateWarning', 'hello', 'verbose', {level = 4, message = 'My Warning message!'}) _AFT.testEvtGrpReceived("TestEventGroupReceived",{"hello/anEvent","hello/anotherEvent"},300000) @@ -96,6 +98,7 @@ function _callback(responseJ) _AFT.assertStrContains(responseJ.response, "Some S function _callbackError(responseJ) _AFT.assertStrContains(responseJ.request.info, "Ping Binder Daemon fails") end _AFT.describe("testAssertVerbStatusSuccess",function() _AFT.assertVerbStatusSuccess('hello', 'ping', {}) end) +_AFT.describe("testAssertVerbStatusSkipped",function() _AFT.assertVerbStatusSkipped('hello', 'ping', {}) end) _AFT.describe("testAssertVerbResponseEquals",function() _AFT.assertVerbResponseEquals('hello', 'ping', {},"Some String") end) _AFT.describe("testAssertVerbCb",function() _AFT.assertVerbCb('hello', 'ping', {},_callback) end) _AFT.describe("testAssertVerbStatusError",function() _AFT.assertVerbStatusError('hello', 'pingfail', {}) end) |