Class EverythingAllowedPredicate

    • Constructor Detail

      • EverythingAllowedPredicate

        public EverythingAllowedPredicate()
    • Method Detail

      • test

        public boolean test​(Class<?> c)
        Description copied from interface: ReflectionPredicate
        Indicate whether Randoop should use a class.
        Specified by:
        test in interface ReflectionPredicate
        Parameters:
        c - the class to test
        Returns:
        true if the class meets the predicate criteria, false otherwise
      • test

        public boolean test​(Method m)
        Description copied from interface: ReflectionPredicate
        Indicate whether Randoop should use a method.
        Specified by:
        test in interface ReflectionPredicate
        Parameters:
        m - the method to test
        Returns:
        true if the method meets the predicate criteria, false otherwise
      • test

        public boolean test​(Constructor<?> m)
        Description copied from interface: ReflectionPredicate
        Indicate whether Randoop should use a constructor.
        Specified by:
        test in interface ReflectionPredicate
        Parameters:
        m - the constructor to test
        Returns:
        true if the constructor meets the predicate criteria, false otherwise
      • test

        public boolean test​(Field f)
        Description copied from interface: ReflectionPredicate
        Indicate whether Randoop should use a field.
        Specified by:
        test in interface ReflectionPredicate
        Parameters:
        f - the field to test
        Returns:
        true if the field meets the predicate criteria, false otherwise