Package com.google.common.truth
Class OptionalDoubleSubject
- java.lang.Object
-
- com.google.common.truth.Subject
-
- com.google.common.truth.OptionalDoubleSubject
-
public final class OptionalDoubleSubject extends Subject
Propositions for Java 8OptionalDoublesubjects.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class com.google.common.truth.Subject
Subject.EqualityCheck, Subject.Factory<SubjectT extends Subject,ActualT>
-
-
Field Summary
Fields Modifier and Type Field Description private java.util.OptionalDoubleactual
-
Constructor Summary
Constructors Constructor Description OptionalDoubleSubject(FailureMetadata failureMetadata, java.util.OptionalDouble subject, java.lang.String typeDescription)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description voidhasValue(double expected)Fails if theOptionalDoubledoes not have the given value or the subject is null.voidisEmpty()Fails if theOptionalDoubleis present or the subject is null.voidisPresent()Fails if theOptionalDoubleis empty or the subject is null.static Subject.Factory<OptionalDoubleSubject,java.util.OptionalDouble>optionalDoubles()-
Methods inherited from class com.google.common.truth.Subject
actual, actualCustomStringRepresentation, actualCustomStringRepresentationForPackageMembersToCall, butWas, check, check, checkNoNeedToDisplayBothValues, equals, fail, fail, fail, failEqualityCheckForEqualsWithoutDescription, failWithActual, failWithActual, failWithActual, failWithActual, failWithBadResults, failWithCustomSubject, failWithoutActual, failWithoutActual, failWithoutActual, failWithoutActual, failWithoutSubject, hashCode, ignoreCheck, isAnyOf, isEqualTo, isIn, isInstanceOf, isNoneOf, isNotEqualTo, isNotIn, isNotInstanceOf, isNotNull, isNotSameInstanceAs, isNull, isSameInstanceAs, toString, typeDescription
-
-
-
-
Constructor Detail
-
OptionalDoubleSubject
OptionalDoubleSubject(FailureMetadata failureMetadata, java.util.OptionalDouble subject, java.lang.String typeDescription)
-
-
Method Detail
-
isPresent
public void isPresent()
Fails if theOptionalDoubleis empty or the subject is null.
-
isEmpty
public void isEmpty()
Fails if theOptionalDoubleis present or the subject is null.
-
hasValue
public void hasValue(double expected)
Fails if theOptionalDoubledoes not have the given value or the subject is null. This method is not recommended when the code under test is doing any kind of arithmetic, since the exact result of floating point arithmetic is sensitive to apparently trivial changes. More sophisticated comparisons can be done usingassertThat(optional.getAsDouble())…. This method is recommended when the code under test is specified as either copying a value without modification from its input or returning a well-defined literal or constant value.
-
optionalDoubles
public static Subject.Factory<OptionalDoubleSubject,java.util.OptionalDouble> optionalDoubles()
-
-