Class IsTestClassWithTests

  • All Implemented Interfaces:
    java.util.function.Predicate<java.lang.Class<?>>


    @API(status=INTERNAL,
         since="5.1")
    public class IsTestClassWithTests
    extends java.lang.Object
    implements java.util.function.Predicate<java.lang.Class<?>>
    Test if a class is a JUnit Jupiter test class containing executable tests, test factories, test templates, or nested tests.
    Since:
    5.0
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      boolean test​(java.lang.Class<?> candidate)  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • Methods inherited from interface java.util.function.Predicate

        and, isEqual, negate, or
    • Constructor Detail

      • IsTestClassWithTests

        public IsTestClassWithTests​()
    • Method Detail

      • test

        public boolean test​(java.lang.Class<?> candidate)
        Specified by:
        test in interface java.util.function.Predicate<java.lang.Class<?>>