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
Currently, a @TestBean factory method will be found in the directly enclosing class for a @Nested test class; however, such a factory method will not be found in the enclosing class of the enclosing class, etc.
In other words, the search algorithm for a factory method must be recursive when searching enclosing classes for @Nested test classes.
Example
NestedLevel1 passes because the testField1() factory method is found, but NestedLevel2 fails because the testField2() factory method cannot be found.
Overview
Currently, a
@TestBean
factory method will be found in the directly enclosing class for a@Nested
test class; however, such a factory method will not be found in the enclosing class of the enclosing class, etc.In other words, the search algorithm for a factory method must be recursive when searching enclosing classes for
@Nested
test classes.Example
NestedLevel1
passes because thetestField1()
factory method is found, butNestedLevel2
fails because thetestField2()
factory method cannot be found.The text was updated successfully, but these errors were encountered: