Skip to content
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

Provide a method by which code can be executed after ALL suites have finished #55

Open
aosama opened this issue Aug 27, 2018 · 1 comment

Comments

@aosama
Copy link

aosama commented Aug 27, 2018

The ask here would be to implement a test listener similar to Junit mentioned in the article below.

in some cases we need to do cleanup after all the suites have finished execution.

public class TestListener extends RunListener {
@OverRide
public void testRunStarted(Description description) throws Exception {
// Called before any tests have been run.
}
@OverRide
public void testRunFinished(Result result) throws Exception {
// Called when all tests have finished
}
}

https://stackoverflow.com/questions/9903341/cleanup-after-all-junit-tests

@seanf
Copy link
Contributor

seanf commented Mar 28, 2019

Related? #59

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants