Searched refs:IGNORE_ME (Results 1 – 3 of 3) sorted by relevance
/external/guava/guava-gwt/test-super/com/google/common/base/super/com/google/common/base/ |
D | PreconditionsTest.java | 45 Preconditions.checkArgument(true, IGNORE_ME); in testCheckArgument_simpleMessage_success() 67 Preconditions.checkArgument(true, "%s", IGNORE_ME); in testCheckArgument_complexMessage_success() 92 Preconditions.checkState(true, IGNORE_ME); in testCheckState_simpleMessage_success() 114 Preconditions.checkState(true, "%s", IGNORE_ME); in testCheckState_complexMessage_success() 142 String result = Preconditions.checkNotNull(NON_NULL_STRING, IGNORE_ME); in testCheckNotNull_simpleMessage_success() 157 NON_NULL_STRING, "%s", IGNORE_ME); in testCheckNotNull_complexMessage_success() 341 private static final Object IGNORE_ME = new Object() { field in PreconditionsTest
|
/external/guava/guava-tests/test/com/google/common/base/ |
D | PreconditionsTest.java | 47 Preconditions.checkArgument(true, IGNORE_ME); in testCheckArgument_simpleMessage_success() 69 Preconditions.checkArgument(true, "%s", IGNORE_ME); in testCheckArgument_complexMessage_success() 94 Preconditions.checkState(true, IGNORE_ME); in testCheckState_simpleMessage_success() 116 Preconditions.checkState(true, "%s", IGNORE_ME); in testCheckState_complexMessage_success() 144 String result = Preconditions.checkNotNull(NON_NULL_STRING, IGNORE_ME); in testCheckNotNull_simpleMessage_success() 159 NON_NULL_STRING, "%s", IGNORE_ME); in testCheckNotNull_complexMessage_success() 349 private static final Object IGNORE_ME = new Object() { field in PreconditionsTest
|
D | VerifyTest.java | 56 verify(true, "%s", IGNORE_ME); in testVerify_complexMessage_success() 84 String result = verifyNotNull(NON_NULL_STRING, "%s", IGNORE_ME); in testVerifyNotNull_complexMessage_success() 97 private static final Object IGNORE_ME = new Object() { field in VerifyTest
|