You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Some of the test cases are trying to catch Siddhi runtime exceptions. Since Siddhi runtime exceptions are not thrown, these test cases should fail.
However, these test cases are missing the assert fail, in their try block. Therefore, these test cases are not failing even though, they fail to assert the thrown exception.
We need to fix these cases by,
Finding a mechanism to assert the unthrown runtime exceptions
Using assert.fail() to fail the test case if the exception is not asserted.