How to use checkIsNotNullAndNotEmpty method of org.assertj.core.api.AbstractInstantAssert class

Best Assertj code snippet using org.assertj.core.api.AbstractInstantAssert.checkIsNotNullAndNotEmpty

Source:AbstractInstantAssert.java Github

copy

Full Screen

...283 * Strings.284 * @since 3.7.0285 */286 public SELF isIn(String... instantsAsString) {287 checkIsNotNullAndNotEmpty(instantsAsString);288 return isIn(convertToInstantArray(instantsAsString));289 }290 /**291 * Same assertion as {@link #isNotIn(Object...)} (where Objects are expected to be {@link Instant}) but here you292 * pass {@link Instant} String representations that must follow <a href=293 * "http://docs.oracle.com/javase/8/docs/api/java/time/format/DateTimeFormatter.html#ISO_INSTANT"294 * >ISO Instant format</a> to allow calling {@link Instant#parse(CharSequence)} method.295 * <p>296 * Example :297 * <pre><code class='java'> // use String based representation of Instant298 * assertThat(parse("2007-12-03T10:15:30.00Z")).isNotIn("2007-12-03T10:15:35.00Z", "2007-12-03T10:15:25.00Z");</code></pre>299 *300 * @param instantsAsString Array of String representing a {@link Instant}.301 * @return this assertion object.302 * @throws AssertionError if the actual {@code Instant} is {@code null}.303 * @throws IllegalArgumentException if given Strings are null or empty.304 * @throws DateTimeParseException if one of the given String can't be converted to a {@link Instant}.305 * @throws AssertionError if the actual {@code Instant} is in the {@link Instant}s built from given306 * Strings.307 * @since 3.7.0308 */309 public SELF isNotIn(String... instantsAsString) {310 checkIsNotNullAndNotEmpty(instantsAsString);311 return isNotIn(convertToInstantArray(instantsAsString));312 }313 /**314 * Verifies that the actual {@link Instant} is in the [start, end] period (start and end included).315 * <p>316 * Example:317 * <pre><code class='java'> Instant instant = Instant.now();318 * 319 * // assertions succeed:320 * assertThat(instant).isBetween(instant.minusSeconds(1), instant.plusSeconds(1))321 * .isBetween(instant, instant.plusSeconds(1))322 * .isBetween(instant.minusSeconds(1), instant)323 * .isBetween(instant, instant);324 * 325 * // assertions fail:326 * assertThat(instant).isBetween(instant.minusSeconds(10), instant.minusSeconds(1));327 * assertThat(instant).isBetween(instant.plusSeconds(1), instant.plusSeconds(10));</code></pre>328 * 329 * @param startInclusive the start value (inclusive), expected not to be null.330 * @param endInclusive the end value (inclusive), expected not to be null.331 * @return this assertion object.332 * @throws AssertionError if the actual value is {@code null}.333 * @throws NullPointerException if start value is {@code null}.334 * @throws NullPointerException if end value is {@code null}.335 * @throws AssertionError if the actual value is not in [start, end] range.336 * 337 * @since 3.7.1338 */339 public SELF isBetween(Instant startInclusive, Instant endInclusive) {340 comparables.assertIsBetween(info, actual, startInclusive, endInclusive, true, true);341 return myself;342 }343 /**344 * Same assertion as {@link #isBetween(Instant, Instant)} but here you pass {@link Instant} String representations 345 * that must follow <a href="http://docs.oracle.com/javase/8/docs/api/java/time/format/DateTimeFormatter.html#ISO_INSTANT">ISO Instant format</a> 346 * to allow calling {@link Instant#parse(CharSequence)} method.347 * <p>348 * Example:349 * <pre><code class='java'> Instant firstOfJanuary2000 = Instant.parse("2000-01-01T00:00:00.00Z");350 * 351 * // assertions succeed:352 * assertThat(firstOfJanuary2000).isBetween("1999-01-01T00:00:00.00Z", "2001-01-01T00:00:00.00Z")353 * .isBetween("2000-01-01T00:00:00.00Z", "2001-01-01T00:00:00.00Z")354 * .isBetween("1999-01-01T00:00:00.00Z", "2000-01-01T00:00:00.00Z")355 * .isBetween("2000-01-01T00:00:00.00Z", "2000-01-01T00:00:00.00Z");356 * 357 * // assertion fails:358 * assertThat(firstOfJanuary2000).isBetween("1999-01-01T00:00:00.00Z", "1999-12-31T23:59:59.59Z");</code></pre>359 * 360 * @param startInclusive the start value (inclusive), expected not to be null.361 * @param endInclusive the end value (inclusive), expected not to be null.362 * @return this assertion object.363 * 364 * @throws AssertionError if the actual value is {@code null}.365 * @throws NullPointerException if start value is {@code null}.366 * @throws NullPointerException if end value is {@code null}.367 * @throws DateTimeParseException if any of the given String can't be converted to a {@link Instant}.368 * @throws AssertionError if the actual value is not in [start, end] range.369 * 370 * @since 3.7.1371 */372 public SELF isBetween(String startInclusive, String endInclusive) {373 return isBetween(parse(startInclusive), parse(endInclusive));374 }375 /**376 * Verifies that the actual {@link Instant} is in the ]start, end[ period (start and end excluded).377 * <p>378 * Example:379 * <pre><code class='java'> Instant instant = Instant.now();380 * 381 * // assertion succeeds:382 * assertThat(instant).isStrictlyBetween(instant.minusSeconds(1), instant.plusSeconds(1));383 * 384 * // assertions fail:385 * assertThat(instant).isStrictlyBetween(instant.minusSeconds(10), instant.minusSeconds(1));386 * assertThat(instant).isStrictlyBetween(instant.plusSeconds(1), instant.plusSeconds(10));387 * assertThat(instant).isStrictlyBetween(instant, instant.plusSeconds(1));388 * assertThat(instant).isStrictlyBetween(instant.minusSeconds(1), instant);</code></pre>389 * 390 * @param startInclusive the start value (inclusive), expected not to be null.391 * @param endInclusive the end value (inclusive), expected not to be null.392 * @return this assertion object.393 * 394 * @throws AssertionError if the actual value is {@code null}.395 * @throws NullPointerException if start value is {@code null}.396 * @throws NullPointerException if end value is {@code null}.397 * @throws AssertionError if the actual value is not in ]start, end[ range.398 * 399 * @since 3.7.1400 */401 public SELF isStrictlyBetween(Instant startInclusive, Instant endInclusive) {402 comparables.assertIsBetween(info, actual, startInclusive, endInclusive, false, false);403 return myself;404 }405 /**406 * Same assertion as {@link #isStrictlyBetween(Instant, Instant)} but here you pass {@link Instant} String representations 407 * that must follow <a href="http://docs.oracle.com/javase/8/docs/api/java/time/format/DateTimeFormatter.html#ISO_INSTANT">ISO Instant format</a> 408 * to allow calling {@link Instant#parse(CharSequence)} method.409 * <p>410 * Example:411 * <pre><code class='java'> Instant firstOfJanuary2000 = Instant.parse("2000-01-01T00:00:00.00Z");412 * 413 * // assertion succeeds:414 * assertThat(firstOfJanuary2000).isStrictlyBetween("1999-01-01T00:00:00.00Z", "2001-01-01T00:00:00.00Z");415 * 416 * // assertions fail:417 * assertThat(firstOfJanuary2000).isStrictlyBetween("1999-01-01T00:00:00.00Z", "1999-12-31T23:59:59.59Z");418 * assertThat(firstOfJanuary2000).isStrictlyBetween("2000-01-01T00:00:00.00Z", "2001-01-01T00:00:00.00Z");419 * assertThat(firstOfJanuary2000).isStrictlyBetween("1999-01-01T00:00:00.00Z", "2000-01-01T00:00:00.00Z");</code></pre>420 * 421 * @param startInclusive the start value (inclusive), expected not to be null.422 * @param endInclusive the end value (inclusive), expected not to be null.423 * @return this assertion object.424 * 425 * @throws AssertionError if the actual value is {@code null}.426 * @throws NullPointerException if start value is {@code null}.427 * @throws NullPointerException if end value is {@code null}.428 * @throws DateTimeParseException if any of the given String can't be converted to a {@link Instant}.429 * @throws AssertionError if the actual value is not in ]start, end[ range.430 * 431 * @since 3.7.1432 */433 public SELF isStrictlyBetween(String startInclusive, String endInclusive) {434 return isStrictlyBetween(parse(startInclusive), parse(endInclusive));435 }436 @Override437 protected Instant parse(String instantAsString) {438 return Instant.parse(instantAsString);439 }440 private static Object[] convertToInstantArray(String[] instantsAsString) {441 return Arrays.stream(instantsAsString).map(Instant::parse).toArray();442 }443 private static void assertNotNull(AssertionInfo info, Instant actual) {444 Objects.instance().assertNotNull(info, actual);445 }446 private void checkIsNotNullAndNotEmpty(Object[] values) {447 checkArgument(values != null, "The given Instant array should not be null");448 checkArgument(values.length > 0, "The given Instant array should not be empty");449 }450 /**451 * Check that the {@link Instant} string representation to compare actual {@link Instant} to is not null,452 * otherwise throws a {@link IllegalArgumentException} with an explicit message453 *454 * @param instantAsString String representing the {@link Instant} to compare actual with455 * @throws IllegalArgumentException with an explicit message if the given {@link String} is null456 */457 private static void assertInstantAsStringParameterIsNotNull(String instantAsString) {458 checkArgument(instantAsString != null,459 "The String representing the Instant to compare actual with should not be null");460 }...

Full Screen

Full Screen

checkIsNotNullAndNotEmpty

Using AI Code Generation

copy

Full Screen

1assertThat(instant).checkIsNotNullAndNotEmpty();2assertThat(localDate).checkIsNotNullAndNotEmpty();3assertThat(localDateTime).checkIsNotNullAndNotEmpty();4assertThat(localTime).checkIsNotNullAndNotEmpty();5assertThat(offsetDateTime).checkIsNotNullAndNotEmpty();6assertThat(offsetTime).checkIsNotNullAndNotEmpty();7assertThat(zonedDateTime).checkIsNotNullAndNotEmpty();8assertThat(object).checkIsNotNullAndNotEmpty();9assertThat(array).checkIsNotNullAndNotEmpty();10assertThat(list).checkIsNotNullAndNotEmpty();11assertThat(iterable).checkIsNotNullAndNotEmpty();12assertThat(charSequence).checkIsNotNullAndNotEmpty();13assertThat(map).checkIsNotNullAndNotEmpty();14assertThat(path).checkIsNotNullAndNotEmpty();15assertThat(uri).checkIsNotNullAndNotEmpty();16assertThat(url).checkIsNotNullAndNotEmpty();

Full Screen

Full Screen

Automation Testing Tutorials

Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.

LambdaTest Learning Hubs:

YouTube

You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful