Uses of Interface
com.google.common.truth.Subject.Factory
Packages that use Subject.Factory
Package
Description
Truth is a library for performing assertions in
tests:
Custom subjects for testing Protocol
Buffer instances.
-
Uses of Subject.Factory in com.google.common.truth
Methods in com.google.common.truth that return Subject.FactoryModifier and TypeMethodDescriptionstatic Subject.Factory<IntStreamSubject, IntStream> IntStreamSubject.intStreams()Deprecated.static Subject.Factory<LongStreamSubject, LongStream> LongStreamSubject.longStreams()Deprecated.Instead ofabout(longStreams()).that(...), use justthat(...).OptionalDoubleSubject.optionalDoubles()Deprecated.Instead ofabout(optionalDoubles()).that(...), use justthat(...).static Subject.Factory<OptionalIntSubject, OptionalInt> OptionalIntSubject.optionalInts()Deprecated.Instead ofabout(optionalInts()).that(...), use justthat(...).OptionalLongSubject.optionalLongs()Deprecated.Instead ofabout(optionalLongs()).that(...), use justthat(...).static Subject.Factory<OptionalSubject, Optional<?>> OptionalSubject.optionals()Deprecated.Instead ofabout(optionals()).that(...), use justthat(...).static Subject.Factory<PathSubject, Path> PathSubject.paths()Deprecated.Instead ofabout(paths()).that(...), use justthat(...).static Subject.Factory<StreamSubject, Stream<?>> StreamSubject.streams()Deprecated.Instead ofabout(streams()).that(...), use justthat(...).TruthFailureSubject.truthFailures()Factory for creatingTruthFailureSubjectinstances.Methods in com.google.common.truth with parameters of type Subject.FactoryModifier and TypeMethodDescriptionfinal <S extends Subject, A>
SimpleSubjectBuilder<S, A> StandardSubjectBuilder.about(Subject.Factory<S, A> factory) Given a factory for someSubjectclass, returns a builder whosethat(actual)method creates instances of that class.static <S extends Subject, T>
SimpleSubjectBuilder<S, T> Truth.assertAbout(Subject.Factory<S, T> factory) Given a factory for someSubjectclass, returns a builder whosethat(actual)method creates instances of that class.static <S extends Subject, A>
AssertionErrorExpectFailure.expectFailureAbout(Subject.Factory<S, A> factory, ExpectFailure.SimpleSubjectBuilderCallback<S, A> assertionCallback) Captures and returns the failure produced by the assertion in the provided callback, similar toassertThrows(): -
Uses of Subject.Factory in com.google.common.truth.extensions.proto
Methods in com.google.common.truth.extensions.proto that return Subject.FactoryModifier and TypeMethodDescriptionstatic Subject.Factory<LiteProtoSubject, MessageLite> LiteProtoTruth.liteProtos() -
Uses of Subject.Factory in com.google.common.truth.extensions.re2j
Methods in com.google.common.truth.extensions.re2j that return Subject.FactoryModifier and TypeMethodDescriptionRe2jSubjects.re2jString()Returns a subject factory forStringsubjects which you can use to assert things aboutPatternregexes.
about(intStreams()).that(...), use justthat(...).