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

ability to mix junit tests with quackery tests in one class #36

Closed
maciejmikosik opened this issue Nov 21, 2015 · 1 comment
Closed
Assignees
Milestone

Comments

@maciejmikosik
Copy link
Owner

@RunWith(QuackeryRunner.class)
public class XTest {
  @Quackery
  public static Test quackeryTest() {
    ..
  }

  @org.junit.Test
  public void junitTest() {
    ...
    assertTrue(...);
  }
}
@maciejmikosik
Copy link
Owner Author

implemented feature allowing QuackeryRunner to run junit tests 34b7a3e

@maciejmikosik maciejmikosik added this to the 0.12.0 milestone Nov 28, 2015
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant