Conversation
| 1000 | ||
| ) { args: MutableList<String> -> | ||
|
|
||
| args.add("--blackBox") |
There was a problem hiding this comment.
better to use setOption(...). we still have plenty of places where we have args.add(. those should be avoided in new tests
| args.add("--configPath") | ||
| args.add("src/main/resources/config/securitylogin.yaml") | ||
|
|
||
| val solution = initAndRun(args) |
There was a problem hiding this comment.
the failure is expected, as you are doing black-box testing. in BB, the state is not reset. so, usually in E2E involving BB we do not write them involving state.
There was a problem hiding this comment.
you have no specific assertion here. add comment stating this E2E was created to reproduce a bug, and we make sure here that EM does not crash when running this E2E
| args.add("--configPath") | ||
| args.add("src/main/resources/config/securitylogin.yaml") | ||
|
|
||
| val solution = initAndRun(args) |
There was a problem hiding this comment.
you have no specific assertion here. add comment stating this E2E was created to reproduce a bug, and we make sure here that EM does not crash when running this E2E
No description provided.