Should I test public inner classes public methods ? Or I should test outer class public methods, which uses inner class (same approach as testing private methods)?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You need to test everything that is accessible from outside your class. This includes public methods of inner classes (whether or not the classes themselves are public or private).
If you’re exposing a method, you need to test it.