All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.fitbur.assertj.api.AbstractOptionalLongAssert Maven / Gradle / Ivy

There is a newer version: 1.0.0
Show newest version
/**
 * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with
 * the License. You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on
 * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the
 * specific language governing permissions and limitations under the License.
 *
 * Copyright 2012-2016 the original author or authors.
 */
package com.fitbur.assertj.api;

import java.util.OptionalLong;

import static com.fitbur.assertj.error.OptionalShouldBeEmpty.shouldBeEmpty;
import static com.fitbur.assertj.error.OptionalShouldBePresent.shouldBePresent;
import static com.fitbur.assertj.error.OptionalShouldContain.shouldContain;

/**
 * Assertions for {@link java.util.OptionalLong}.
 *
 * @author Jean-Christophe Gay
 * @author Alexander Bischof
 * @author Grzegorz Piwowarek
 */
public abstract class AbstractOptionalLongAssert> extends
    AbstractAssert {

  protected AbstractOptionalLongAssert(OptionalLong actual, Class selfType) {
    super(actual, selfType);
  }

  /**
   * Verifies that there is a value present in the actual {@link java.util.OptionalLong}.
   * 

* Assertion will pass : *

* *

 assertThat(OptionalLong.of(10)).isPresent();
*

* Assertion will fail : *

* *

 assertThat(OptionalLong.empty()).isPresent();
* * @return this assertion object. * @throws AssertionError if actual value is empty. * @throws AssertionError if actual is null. */ public S isPresent() { isNotNull(); if (!actual.isPresent()) throwAssertionError(shouldBePresent(actual)); return myself; } /** * Verifies that the actual {@link java.util.OptionalLong} is empty (alias of {@link #isEmpty()}). *

* Assertion will pass : *
 assertThat(OptionalLong.empty()).isNotPresent();
* * Assertion will fail : *
 assertThat(OptionalLong.of(10)).isNotPresent();
* * @return this assertion object. */ public S isNotPresent() { return isEmpty(); } /** * Verifies that the actual {@link java.util.OptionalLong} is empty. *

* Assertion will pass : *

* *

 assertThat(OptionalLong.empty()).isEmpty();
*

* Assertion will fail : *

* *

 assertThat(OptionalLong.of(10)).isEmpty();
* * @return this assertion object. * @throws AssertionError if actual value is present. * @throws AssertionError if actual is null. */ public S isEmpty() { isNotNull(); if (actual.isPresent()) throwAssertionError(shouldBeEmpty(actual)); return myself; } /** * Verifies that there is a value present in the actual {@link java.util.OptionalLong}, it's an alias of {@link #isPresent()}. *

* Assertion will pass : *

* *

 assertThat(OptionalLong.of(10)).isNotEmpty();
*

* Assertion will fail : *

* *

 assertThat(OptionalLong.empty()).isNotEmpty();
* * @return this assertion object. * @throws AssertionError if actual value is empty. * @throws AssertionError if actual is null. */ public S isNotEmpty() { return isPresent(); } /** * Verifies that the actual {@link java.util.OptionalLong} has the value in argument. *

* Assertion will pass : *

* *

 assertThat(OptionalLong.of(8)).hasValue(8);
   * assertThat(OptionalLong.of(8)).hasValue(Integer.valueOf(8));
*

* Assertion will fail : *

* *

 assertThat(OptionalLong.empty()).hasValue(8);
   * assertThat(OptionalLong.of(7)).hasValue(8);
* * @param expectedValue the expected value inside the {@link java.util.OptionalLong}. * @return this assertion object. * @throws AssertionError if actual value is empty. * @throws AssertionError if actual is null. * @throws AssertionError if actual has not the value as expected. */ public S hasValue(long expectedValue) { isNotNull(); if (!actual.isPresent()) throwAssertionError(shouldContain(expectedValue)); if (expectedValue != actual.getAsLong()) throwAssertionError(shouldContain(actual, expectedValue)); return myself; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy