Searched refs:NON_NULL_STRING (Results 1 – 4 of 4) sorted by relevance
/external/guava/guava-tests/test/com/google/common/base/ |
D | VerifyTest.java | 66 private static final String NON_NULL_STRING = "foo"; field in VerifyTest 69 String result = verifyNotNull(NON_NULL_STRING); in testVerifyNotNull_simple_success() 70 assertSame(NON_NULL_STRING, result); in testVerifyNotNull_simple_success() 82 String result = verifyNotNull(NON_NULL_STRING, "%s", IGNORE_ME); in testVerifyNotNull_complexMessage_success() 83 assertSame(NON_NULL_STRING, result); in testVerifyNotNull_complexMessage_success()
|
D | PreconditionsTest.java | 192 private static final String NON_NULL_STRING = "foo"; field in PreconditionsTest 195 String result = Preconditions.checkNotNull(NON_NULL_STRING); in testCheckNotNull_simple_success() 196 assertSame(NON_NULL_STRING, result); in testCheckNotNull_simple_success() 208 String result = Preconditions.checkNotNull(NON_NULL_STRING, IGNORE_ME); in testCheckNotNull_simpleMessage_success() 209 assertSame(NON_NULL_STRING, result); in testCheckNotNull_simpleMessage_success() 222 String result = Preconditions.checkNotNull(NON_NULL_STRING, "%s", IGNORE_ME); in testCheckNotNull_complexMessage_success() 223 assertSame(NON_NULL_STRING, result); in testCheckNotNull_complexMessage_success()
|
/external/guava/android/guava-tests/test/com/google/common/base/ |
D | VerifyTest.java | 66 private static final String NON_NULL_STRING = "foo"; field in VerifyTest 69 String result = verifyNotNull(NON_NULL_STRING); in testVerifyNotNull_simple_success() 70 assertSame(NON_NULL_STRING, result); in testVerifyNotNull_simple_success() 82 String result = verifyNotNull(NON_NULL_STRING, "%s", IGNORE_ME); in testVerifyNotNull_complexMessage_success() 83 assertSame(NON_NULL_STRING, result); in testVerifyNotNull_complexMessage_success()
|
D | PreconditionsTest.java | 192 private static final String NON_NULL_STRING = "foo"; field in PreconditionsTest 195 String result = Preconditions.checkNotNull(NON_NULL_STRING); in testCheckNotNull_simple_success() 196 assertSame(NON_NULL_STRING, result); in testCheckNotNull_simple_success() 208 String result = Preconditions.checkNotNull(NON_NULL_STRING, IGNORE_ME); in testCheckNotNull_simpleMessage_success() 209 assertSame(NON_NULL_STRING, result); in testCheckNotNull_simpleMessage_success() 222 String result = Preconditions.checkNotNull(NON_NULL_STRING, "%s", IGNORE_ME); in testCheckNotNull_complexMessage_success() 223 assertSame(NON_NULL_STRING, result); in testCheckNotNull_complexMessage_success()
|