MCPcopy Index your code
hub / github.com/OpenFeign/feign / isBlankInputNullOutputTrue

Method isBlankInputNullOutputTrue

core/src/test/java/feign/UtilTest.java:231–239  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

229 }
230
231 @Test
232 void isBlankInputNullOutputTrue() {
233 // Arrange
234 final String value = null;
235 // Act
236 final boolean retval = Util.isBlank(value);
237 // Assert result
238 assertThat(retval).isEqualTo(true);
239 }
240
241 @Test
242 void isNotBlankInputNotNullOutputFalse() {

Callers

nothing calls this directly

Calls 2

isBlankMethod · 0.95
assertThatMethod · 0.45

Tested by

no test coverage detected