-
Notifications
You must be signed in to change notification settings - Fork 33
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
Asserts in SubVIs not appearing as expected in JUnit reports #104
Comments
Will make it to the next release. Thanks @ChrisStrykesAgain |
Sure thing. Happy to clone and test against an unpackaged version as well, if that would be more convenient. |
The develop branch already has the fix you proposed, but I'm still a few fixes away from a new package. Feel free to pull it and try!
|
Available in VIP file (pre-release 1.1.0) https://github.com/JKISoftware/Caraya/releases/tag/1.1.0 |
I like it! Thanks. |
This was referenced Nov 26, 2020
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
When calling an assert in a SubVI, JUnit reports aren't generated in the manner I expect.
For example, consider the following:
The text based output is as follows:
Here you can see the three top level VIs.
Calling Top Level VI (Incorrect)
has an assert in a subVI, but the subVI itself is not defined as a test. I'm fine with this not working.Top Level VI (Correct)
behaves as I would expect. I defined a test in the SubVI, and it is traceable back up to the top level.My Test That Works Correctly
is a self-contained test, included only for reference.The JUnit output. however, is as follows:
The problem is that
Top Level VI (Correct)
never appears. If you're using the same SubVI from multiple top level tests, this is a distinct problem.Reproducing code is attached (saved in 2020... sorry)
This might be a duplicate of or related to #100 but I'm not sure.
Caraya JUnit Bug.zip
The text was updated successfully, but these errors were encountered: