com.fitbur.assertj.api.AbstractOptionalIntAssert Maven / Gradle / Ivy
/**
* 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 com.fitbur.assertj.internal.Integers;
import com.fitbur.assertj.util.VisibleForTesting;
import java.util.OptionalInt;
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.OptionalInt}.
*
* @author Jean-Christophe Gay
* @author Alexander Bischof
* @author Grzegorz Piwowarek
*/
public abstract class AbstractOptionalIntAssert> extends
AbstractAssert {
@VisibleForTesting
Integers integers = Integers.instance();
protected AbstractOptionalIntAssert(OptionalInt actual, Class> selfType) {
super(actual, selfType);
}
/**
* Verifies that there is a value present in the actual {@link java.util.OptionalInt}.
*
* Assertion will pass :
*
*
*
assertThat(OptionalInt.of(10)).isPresent();
*
* Assertion will fail :
*
*
*
assertThat(OptionalInt.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.OptionalInt} is empty (alias of {@link #isEmpty()}).
*
* Assertion will pass :
* assertThat(OptionalInt.empty()).isNotPresent();
*
* Assertion will fail :
* assertThat(OptionalInt.of(10)).isNotPresent();
*
* @return this assertion object.
*/
public S isNotPresent() {
return isEmpty();
}
/**
* Verifies that the actual {@link java.util.OptionalInt} is empty.
*
* Assertion will pass :
*
*
*
assertThat(OptionalInt.empty()).isEmpty();
*
* Assertion will fail :
*
*
*
assertThat(OptionalInt.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.OptionalInt}, it's an alias of {@link #isPresent()}.
*
* Assertion will pass :
*
*
*
assertThat(OptionalInt.of(10)).isNotEmpty();
*
* Assertion will fail :
*
*
*
assertThat(OptionalInt.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.OptionalInt} has the value in argument.
*
* Assertion will pass :
*
*
*
assertThat(OptionalInt.of(8)).hasValue(8);
* assertThat(OptionalInt.of(8)).hasValue(Integer.valueOf(8));
*
* Assertion will fail :
*
*
*
assertThat(OptionalInt.empty()).hasValue(8);
* assertThat(OptionalInt.of(7)).hasValue(8);
*
* @param expectedValue the expected value inside the {@link java.util.OptionalInt}.
* @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(int expectedValue) {
isNotNull();
if (!actual.isPresent()) throwAssertionError(shouldContain(expectedValue));
if (expectedValue != actual.getAsInt()) throwAssertionError(shouldContain(actual, expectedValue));
return myself;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy