Home
last modified time | relevance | path

Searched refs:forAllPublicStaticMethods (Results 1 – 11 of 11) sorted by relevance

/external/guava/guava-testlib/test/com/google/common/testing/
DClassSanityTesterTest.java53 tester.forAllPublicStaticMethods(GoodEqualsFactory.class).testEquals(); in testEqualsOnReturnValues_good()
84 tester.forAllPublicStaticMethods(NoPublicStaticMethods.class).testEquals(); in testForAllPublicStaticMethods_noPublicStaticMethods()
97 tester.forAllPublicStaticMethods(BadEqualsFactory.class).testEquals(); in testEqualsOnReturnValues_bad()
114 tester.forAllPublicStaticMethods(GoodNullsFactory.class).testNulls(); in testNullsOnReturnValues_good()
127 .forAllPublicStaticMethods(BadNullsFactory.class) in testNullsOnReturnValues_bad()
139 .forAllPublicStaticMethods(BadNullsFactory.class) in testNullsOnReturnValues_returnTypeFiltered()
159 tester.forAllPublicStaticMethods(GoodSerializableFactory.class).testSerializable(); in testSerializableOnReturnValues_good()
173 tester.forAllPublicStaticMethods(BadSerializableFactory.class).testSerializable(); in testSerializableOnReturnValues_bad()
192 tester.forAllPublicStaticMethods(GoodEqualsFactory.class).testEqualsAndSerializable(); in testEqualsAndSerializableOnReturnValues_equalsIsGoodButNotSerializable()
202 tester.forAllPublicStaticMethods(GoodSerializableFactory.class).testEqualsAndSerializable(); in testEqualsAndSerializableOnReturnValues_serializableButNotEquals()
[all …]
/external/guava/guava-tests/test/com/google/common/base/
DSuppliersTest.java397 new ClassSanityTester().forAllPublicStaticMethods(Suppliers.class) in testSuppliersNullChecks()
403 new ClassSanityTester().forAllPublicStaticMethods(Suppliers.class) in testSuppliersSerializable()
DFunctionsTest.java433 new ClassSanityTester().forAllPublicStaticMethods(Functions.class).testNulls(); in testNulls()
438 new ClassSanityTester().forAllPublicStaticMethods(Functions.class).testEqualsAndSerializable(); in testEqualsAndSerializable()
DPredicatesTest.java917 new ClassSanityTester().forAllPublicStaticMethods(Predicates.class).testNulls(); in testNulls()
922 new ClassSanityTester().forAllPublicStaticMethods(Predicates.class).testEqualsAndSerializable(); in testEqualsAndSerializable()
/external/guava/guava-tests/test/com/google/common/collect/
DEnumMultisetTest.java162 .forAllPublicStaticMethods(EnumMultisetFactory.class)
DIterablesTest.java1345 .forAllPublicStaticMethods(Iterables.class)
/external/guava/guava-tests/test/com/google/common/util/concurrent/
DJdkFutureAdaptersTest.java252 .forAllPublicStaticMethods(JdkFutureAdapters.class) in testAdapters_nullChecks()
DMoreExecutorsTest.java607 .forAllPublicStaticMethods(MoreExecutors.class) in testExecutors_nullCheck()
DFuturesTest.java2593 .forAllPublicStaticMethods(Futures.class)
/external/guava/guava-tests/test/com/google/common/hash/
DHashCodeTest.java343 .forAllPublicStaticMethods(HashCode.class); in sanityTester()
/external/guava/guava-testlib/src/com/google/common/testing/
DClassSanityTester.java391 public FactoryMethodReturnValueTester forAllPublicStaticMethods(Class<?> cls) { in forAllPublicStaticMethods() method in ClassSanityTester