-
Notifications
You must be signed in to change notification settings - Fork 81
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add support for Robot Framework 5.0 #43
Conversation
This reverts commit ecd490b.
|
||
@Test | ||
public void testRobot5Basic() { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We will not remember in the future why we test Robot v.5 specifically. I would wish for more descriptive name (eg. testRobot5TryAndWhile
) and a comment noting that this was introduced in RF5
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Renamed test and added a comment about test contents.
@Test | ||
public void testRobot5Basic() { | ||
final String dir = "robot5"; | ||
final String mask = "basic_output.xml"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The same problem as above: we won't remember in the future why we have basic_output.xml
for RF5, rather than have a more descriptive name eg. robot5_except_while_output.xml
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Renamed output file.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM 💖
What version are we releasing? 3.0.2 or 3.1?
Modify parser to parse try-catch and while loops.