Hi,
I'm testing software with Ratonal Robot (SQA = basic dialect). In my wordfile I have
open brace strings ... "If" "Select Case" For"
close brace strings.... "End If" "End Select" "Next"
This works fine, as long I do not have nested statements like:
The matching "End If" for the first If is not found. Is there any posibility to get that to work?
Thanks
I'm testing software with Ratonal Robot (SQA = basic dialect). In my wordfile I have
open brace strings ... "If" "Select Case" For"
close brace strings.... "End If" "End Select" "Next"
This works fine, as long I do not have nested statements like:
Code: Select all
If bla Then
If blu Then
do something
Else If
do something
End If
Else If
If blu Then
do something
Else If
do something
End If
End If
Thanks