Uses of Enum Class
com.google.common.testing.NullPointerTester.Visibility
Packages that use NullPointerTester.Visibility
-
Uses of NullPointerTester.Visibility in com.google.common.testing
Fields in com.google.common.testing declared as NullPointerTester.VisibilityModifier and TypeFieldDescriptionprivate NullPointerTester.Visibility
AbstractPackageSanityTests.visibility
Methods in com.google.common.testing that return NullPointerTester.VisibilityModifier and TypeMethodDescriptionstatic NullPointerTester.Visibility
Returns the enum constant of this class with the specified name.static NullPointerTester.Visibility[]
NullPointerTester.Visibility.values()
Returns an array containing the constants of this enum class, in the order they are declared.Methods in com.google.common.testing with parameters of type NullPointerTester.VisibilityModifier and TypeMethodDescription(package private) void
ClassSanityTester.doTestNulls
(Class<?> cls, NullPointerTester.Visibility visibility) (package private) ImmutableList
<Method> NullPointerTester.getInstanceMethodsToTest
(Class<?> c, NullPointerTester.Visibility minimalVisibility) private boolean
ClassSanityTester.hasInstanceMethodToTestNulls
(Class<?> c, NullPointerTester.Visibility visibility) void
NullPointerTester.testConstructors
(Class<?> c, NullPointerTester.Visibility minimalVisibility) RunsNullPointerTester.testConstructor(java.lang.reflect.Constructor<?>)
on every constructor in classc
that has at leastminimalVisibility
.void
NullPointerTester.testInstanceMethods
(Object instance, NullPointerTester.Visibility minimalVisibility) RunsNullPointerTester.testMethod(java.lang.Object, java.lang.reflect.Method)
on every instance method of the class ofinstance
with at leastminimalVisibility
, including those inherited from superclasses of the same package.void
NullPointerTester.testStaticMethods
(Class<?> c, NullPointerTester.Visibility minimalVisibility) RunsNullPointerTester.testMethod(java.lang.Object, java.lang.reflect.Method)
on every static method of classc
that has at leastminimalVisibility
, including those "inherited" from superclasses of the same package.