Home
last modified time | relevance | path

Searched refs:NON_NULL_STRING (Results 1 – 3 of 3) sorted by relevance

/external/guava/guava-tests/test/com/google/common/base/
DVerifyTest.java68 private static final String NON_NULL_STRING = "foo"; field in VerifyTest
71 String result = verifyNotNull(NON_NULL_STRING); in testVerifyNotNull_simple_success()
72 assertSame(NON_NULL_STRING, result); in testVerifyNotNull_simple_success()
84 String result = verifyNotNull(NON_NULL_STRING, "%s", IGNORE_ME); in testVerifyNotNull_complexMessage_success()
85 assertSame(NON_NULL_STRING, result); in testVerifyNotNull_complexMessage_success()
DPreconditionsTest.java128 private static final String NON_NULL_STRING = "foo"; field in PreconditionsTest
131 String result = Preconditions.checkNotNull(NON_NULL_STRING); in testCheckNotNull_simple_success()
132 assertSame(NON_NULL_STRING, result); in testCheckNotNull_simple_success()
144 String result = Preconditions.checkNotNull(NON_NULL_STRING, IGNORE_ME); in testCheckNotNull_simpleMessage_success()
145 assertSame(NON_NULL_STRING, result); in testCheckNotNull_simpleMessage_success()
159 NON_NULL_STRING, "%s", IGNORE_ME); in testCheckNotNull_complexMessage_success()
160 assertSame(NON_NULL_STRING, result); in testCheckNotNull_complexMessage_success()
/external/guava/guava-gwt/test-super/com/google/common/base/super/com/google/common/base/
DPreconditionsTest.java126 private static final String NON_NULL_STRING = "foo"; field in PreconditionsTest
129 String result = Preconditions.checkNotNull(NON_NULL_STRING); in testCheckNotNull_simple_success()
130 assertSame(NON_NULL_STRING, result); in testCheckNotNull_simple_success()
142 String result = Preconditions.checkNotNull(NON_NULL_STRING, IGNORE_ME); in testCheckNotNull_simpleMessage_success()
143 assertSame(NON_NULL_STRING, result); in testCheckNotNull_simpleMessage_success()
157 NON_NULL_STRING, "%s", IGNORE_ME); in testCheckNotNull_complexMessage_success()
158 assertSame(NON_NULL_STRING, result); in testCheckNotNull_complexMessage_success()