We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hi,
I don't know if I just didn't find how to do it, but I can't test a bean that has a constructor where the arguments are not also properties.
Example:
public class MyBeanClass { private String a, b, c; public MyBeanClass(AnotherClass other) { this.a = other.getA(); this.b = other.getB(); this.c = other.getC(); } }
There should be some way to tell the tester to just ignore that constructor, or is there?
The text was updated successfully, but these errors were encountered:
no, unfortunately the library can't test this case. Sorry!
Sorry, something went wrong.
No branches or pull requests
Hi,
I don't know if I just didn't find how to do it, but I can't test a bean that has a constructor where the arguments are not also properties.
Example:
There should be some way to tell the tester to just ignore that constructor, or is there?
The text was updated successfully, but these errors were encountered: