Class ShouldOnlyHaveElementsOfTypes

  • All Implemented Interfaces:
    ErrorMessageFactory

    public class ShouldOnlyHaveElementsOfTypes
    extends BasicErrorMessageFactory
    Creates an error message indicating that an assertion that verifies a group of elements contains elements that are not an instance of one of the given types. A group of elements can be an iterable or an array of objects.
    Author:
    Martin Winandy
    • Method Detail

      • shouldOnlyHaveElementsOfTypes

        public static ShouldOnlyHaveElementsOfTypes shouldOnlyHaveElementsOfTypes​(Object actual,
                                                                                  Class<?>[] types,
                                                                                  Iterable<?> dismatches)
        Parameters:
        actual - the object value in the failed assertion.
        types - the expected classes and interfaces.
        dismatches - elements that are not an instance of one of the given types.
        Returns:
        the created ErrorMessageFactory.