Interface GivenCodeUnits<CODE_UNIT extends JavaCodeUnit>
- All Superinterfaces:
GivenMembers<CODE_UNIT>,GivenObjects<CODE_UNIT>
- All Known Subinterfaces:
GivenConstructors,GivenMethods
@PublicAPI(usage=ACCESS)
public interface GivenCodeUnits<CODE_UNIT extends JavaCodeUnit>
extends GivenMembers<CODE_UNIT>
-
Method Summary
Modifier and TypeMethodDescriptionCodeUnitsShould<? extends CodeUnitsShouldConjunction<CODE_UNIT>>should()Allows to specify assertions for the set of members under consideration.should(ArchCondition<? super CODE_UNIT> condition) Allows to specify assertions for the set of members under consideration.CodeUnitsThat<? extends GivenCodeUnitsConjunction<CODE_UNIT>>that()Allows to restrict the set of members under consideration.that(DescribedPredicate<? super CODE_UNIT> predicate) Allows to restrict the set of members under consideration.
-
Method Details
-
that
Description copied from interface:GivenMembers- Specified by:
thatin interfaceGivenMembers<CODE_UNIT extends JavaCodeUnit>- Returns:
- A syntax element, which can be used to restrict the members under consideration
-
that
@PublicAPI(usage=ACCESS) GivenCodeUnitsConjunction<CODE_UNIT> that(DescribedPredicate<? super CODE_UNIT> predicate) Description copied from interface:GivenMembersAllows to restrict the set of members under consideration. E.g.
Note that many predefinedmembers().that(haveName("foo"))predicatescan be found within a subclassPredicatesof the respective domain object or a common ancestor. For example,predicatestargetingJavaMembercan be found withinJavaMember.Predicatesor one of the respective ancestors likeHasName.Predicates.- Specified by:
thatin interfaceGivenMembers<CODE_UNIT extends JavaCodeUnit>- Specified by:
thatin interfaceGivenObjects<CODE_UNIT extends JavaCodeUnit>- Returns:
- A syntax conjunction element, which can be completed to form a full rule
-
should
Description copied from interface:GivenMembersAllows to specify assertions for the set of members under consideration. E.g.
members().should().haveName("foo")- Specified by:
shouldin interfaceGivenMembers<CODE_UNIT extends JavaCodeUnit>- Returns:
- A syntax element, which can be used to restrict the members under consideration
-
should
@PublicAPI(usage=ACCESS) CodeUnitsShouldConjunction<CODE_UNIT> should(ArchCondition<? super CODE_UNIT> condition) Description copied from interface:GivenMembersAllows to specify assertions for the set of members under consideration. E.g.
Predefined conditions to customize and join can be found withinmembers().should(haveName("foo"))ArchConditions.- Specified by:
shouldin interfaceGivenMembers<CODE_UNIT extends JavaCodeUnit>- Specified by:
shouldin interfaceGivenObjects<CODE_UNIT extends JavaCodeUnit>- Returns:
- A syntax element, which can be used to restrict the members under consideration
-