-
Notifications
You must be signed in to change notification settings - Fork 10
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
@Before and @After do not work #4
Comments
+1 for fixing this. |
We only support the @test annotation and the Junit assert API in test tools. |
Thanks for replying @purplefox I appreciate that you're only supporting the @test annotation at the moment, but are you saying that you would reject pull requests that implement @before and @after functionality as well? |
Pull requests are always welcome :) |
@purplefox if I implement this, I've got an open design question: Since the test class is now a verticle and thus performs comms/io etc asynchronously any implementation of the |
+1 for fixing this, at least for v3 😄 Supporting |
@before and @after annotations as known from JUnit do not work
@BeforeClass do work, however.
https://gist.github.com/ewolff/5894732 fails in beforeIsExecuted()
https://gist.github.com/ewolff/5894741 fails in afterClass()
I am running the tests in the test-tools-tests project commit 493fa1314565173ecac2ed8fb5438e358cb687ce .
The text was updated successfully, but these errors were encountered: