You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Skippy appears to not be taking into account that test classes may contain nested classes (e.g. classes annotated with @Nested) that in turn may contain test methods of their own (it is not mandatory, but it is usually the case).
Worts case scenario, if the top-level class itself doesn't exercise a production class that has changed, none of the tests would be executed, even if some of the nested classes of that test class do. The net result is that the change in the production class would be undetected.
The text was updated successfully, but these errors were encountered:
Skippy appears to not be taking into account that test classes may contain nested classes (e.g. classes annotated with
@Nested
) that in turn may contain test methods of their own (it is not mandatory, but it is usually the case).Worts case scenario, if the top-level class itself doesn't exercise a production class that has changed, none of the tests would be executed, even if some of the nested classes of that test class do. The net result is that the change in the production class would be undetected.
The text was updated successfully, but these errors were encountered: