Tabnine Logo
CategoryFilter.hasNull
Code IndexAdd Tabnine to your IDE (free)

How to use
hasNull
method
in
com.novocode.junit.CategoryFilter

Best Java code snippets using com.novocode.junit.CategoryFilter.hasNull (Showing top 2 results out of 315)

origin: com.novocode/junit-interface

public static CategoryFilter include(boolean matchAny, Class<?>... categories) {
  if (hasNull(categories)) {
    throw new NullPointerException("has null category");
  }
  return categoryFilter(matchAny, createSet(categories), true, null);
}
origin: com.novocode/junit-interface

public static CategoryFilter exclude(boolean matchAny, Class<?>... categories) {
  if (hasNull(categories)) {
    throw new NullPointerException("has null category");
  }
  return categoryFilter(true, null, matchAny, createSet(categories));
}
com.novocode.junitCategoryFilterhasNull

Popular methods of CategoryFilter

  • <init>
  • addCategory
  • categories
  • categoryFilter
  • copyAndRefine
  • createSet
  • directCategories
  • exclude
  • hasAssignableTo
  • hasCorrectCategoryAnnotation
  • include
  • matchesAllParentCategories
  • include,
  • matchesAllParentCategories,
  • matchesAnyParentCategories,
  • parentDescription,
  • shouldRun,
  • toString

Popular in Java

  • Finding current android device location
  • scheduleAtFixedRate (Timer)
  • compareTo (BigDecimal)
  • scheduleAtFixedRate (ScheduledExecutorService)
  • Pointer (com.sun.jna)
    An abstraction for a native pointer data type. A Pointer instance represents, on the Java side, a na
  • BufferedImage (java.awt.image)
    The BufferedImage subclass describes an java.awt.Image with an accessible buffer of image data. All
  • Format (java.text)
    The base class for all formats. This is an abstract base class which specifies the protocol for clas
  • LinkedList (java.util)
    Doubly-linked list implementation of the List and Dequeinterfaces. Implements all optional list oper
  • TimeUnit (java.util.concurrent)
    A TimeUnit represents time durations at a given unit of granularity and provides utility methods to
  • IsNull (org.hamcrest.core)
    Is the value null?
  • Top plugins for Android Studio
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now