Skip navigation links
A B C D E G H I K M O R S T V 

A

Assertions - Class in org.assertj.guava.api
The entry point for all Guava assertions.
Assertions() - Constructor for class org.assertj.guava.api.Assertions
protected to avoid direct instanciation but allowing subclassing.
assertThat(ByteSource) - Static method in class org.assertj.guava.api.Assertions
 
assertThat(Multimap<K, V>) - Static method in class org.assertj.guava.api.Assertions
 
assertThat(Optional<T>) - Static method in class org.assertj.guava.api.Assertions
 
assertThat(Range<T>) - Static method in class org.assertj.guava.api.Assertions
 
assertThat(RangeMap<K, V>) - Static method in class org.assertj.guava.api.Assertions
 
assertThat(Table<R, C, V>) - Static method in class org.assertj.guava.api.Assertions
 

B

ByteSourceAssert - Class in org.assertj.guava.api
Assertions for Guava ByteSource.
ByteSourceAssert(ByteSource) - Constructor for class org.assertj.guava.api.ByteSourceAssert
 

C

contains(MapEntry<K, V>...) - Method in class org.assertj.guava.api.MultimapAssert
Verifies that the actual Multimap contains the given entries.
contains(Object) - Method in class org.assertj.guava.api.OptionalAssert
Verifies that the actual Optional contains the given value.
contains(T...) - Method in class org.assertj.guava.api.RangeAssert
Verifies that the actual Range contains the given values.
contains(MapEntry<K, V>...) - Method in class org.assertj.guava.api.RangeMapAssert
Verifies that the actual RangeMap contains the given entries.
containsAllEntriesOf(Multimap<? extends K, ? extends V>) - Method in class org.assertj.guava.api.MultimapAssert
Verifies that the actual Multimap contains all entries of the given one (it might contain more entries).
containsCell(R, C, V) - Method in class org.assertj.guava.api.TableAssert
Verifies that the actual Table contains the mapping of row/column to value.
containsColumns(C...) - Method in class org.assertj.guava.api.TableAssert
Verifies that the actual Table contains the given columns.
containsKeys(K...) - Method in class org.assertj.guava.api.MultimapAssert
Verifies that the actual Multimap contains the given keys.
containsKeys(K...) - Method in class org.assertj.guava.api.RangeMapAssert
Verifies that the actual RangeMap contains the given keys.
containsRows(R...) - Method in class org.assertj.guava.api.TableAssert
Verifies that the actual Table contains the given rows.
containsValues(V...) - Method in class org.assertj.guava.api.MultimapAssert
Verifies that the actual Multimap contains the given values for any key.
containsValues(V...) - Method in class org.assertj.guava.api.RangeMapAssert
Verifies that the actual RangeMap contains the given values.
containsValues(V...) - Method in class org.assertj.guava.api.TableAssert
Verifies that the actual Table contains the given values for any key.

D

doesNotContain(T...) - Method in class org.assertj.guava.api.RangeAssert
Verifies that the actual Range does not contain the given values.

E

entry(K, V) - Static method in class org.assertj.guava.api.Assertions
Only delegate to MapEntry.entry(Object, Object) so that Assertions offers a fully featured entry point to all AssertJ Guava features (but you can use MapEntry if you prefer).
entry(K, V) - Static method in class org.assertj.guava.data.MapEntry
Creates a new MapEntry.
equals(Object) - Method in class org.assertj.guava.data.MapEntry
 
ExceptionUtils - Class in org.assertj.guava.util
 
ExceptionUtils() - Constructor for class org.assertj.guava.util.ExceptionUtils
protected to avoid direct instanciation but allowing subclassing.
extractingCharSequence() - Method in class org.assertj.guava.api.OptionalAssert
Chain assertion on the content of the Optional.
extractingValue() - Method in class org.assertj.guava.api.OptionalAssert
Chain assertion on the content of the Optional.

G

getActual() - Method in class org.assertj.guava.api.MultimapAssert
 
getActual() - Method in class org.assertj.guava.api.OptionalAssert
 
getActual() - Method in class org.assertj.guava.api.RangeMapAssert
 

H

hasClosedLowerBound() - Method in class org.assertj.guava.api.RangeAssert
Verifies that the actual Range lower bound is closed.
hasClosedUpperBound() - Method in class org.assertj.guava.api.RangeAssert
Verifies that the actual Range upper bound is closed.
hasColumnCount(int) - Method in class org.assertj.guava.api.TableAssert
Verifies that the actual Table has the expected number of columns.
hashCode() - Method in class org.assertj.guava.data.MapEntry
 
hasLowerEndpointEqualTo(T) - Method in class org.assertj.guava.api.RangeAssert
Verifies that the actual Range lower endpoint is equal to the given value.
hasOpenedLowerBound() - Method in class org.assertj.guava.api.RangeAssert
Verifies that the actual Range lower bound is opened.
hasOpenedUpperBound() - Method in class org.assertj.guava.api.RangeAssert
Verifies that the actual Range upper bound is opened.
hasRowCount(int) - Method in class org.assertj.guava.api.TableAssert
Verifies that the actual Table has the expected number of rows.
hasSameContentAs(ByteSource) - Method in class org.assertj.guava.api.ByteSourceAssert
Verifies that the actual ByteSource contains has the same content as the provided one.
hasSameEntriesAs(Multimap<? extends K, ? extends V>) - Method in class org.assertj.guava.api.MultimapAssert
Verifies that the actual Multimap has the same entries as the given one.
It allows to compare two multimaps having the same content but who are not equal because being of different types like SetMultimap and ListMultimap.
hasSize(long) - Method in class org.assertj.guava.api.ByteSourceAssert
Verifies that the size of the actual ByteSource is equal to the given one.
hasSize(int) - Method in class org.assertj.guava.api.MultimapAssert
Verifies that the number of values in the actual Multimap is equal to the given one.
hasSize(int) - Method in class org.assertj.guava.api.TableAssert
Verifies that the actual Table has the expected number of cells.
hasUpperEndpointEqualTo(T) - Method in class org.assertj.guava.api.RangeAssert
Verifies that the actual Range upper endpoint is equal to the given value.

I

isAbsent() - Method in class org.assertj.guava.api.OptionalAssert
Verifies that the actual Optional contained instance is absent/null (ie.
isEmpty() - Method in class org.assertj.guava.api.ByteSourceAssert
Verifies that the actual ByteSource is empty.
isEmpty() - Method in class org.assertj.guava.api.MultimapAssert
Verifies that the actual Multimap is empty.
isEmpty() - Method in class org.assertj.guava.api.RangeAssert
Verifies that the actual Range is empty.
isEmpty() - Method in class org.assertj.guava.api.RangeMapAssert
Verifies that the actual RangeMap is empty.
isEmpty() - Method in class org.assertj.guava.api.TableAssert
Verifies that the actual Table is empty.
isNotEmpty() - Method in class org.assertj.guava.api.MultimapAssert
Verifies that the actual Multimap is not empty.
isNotEmpty() - Method in class org.assertj.guava.api.RangeAssert
Verifies that the actual Range is not empty.
isNotEmpty() - Method in class org.assertj.guava.api.RangeMapAssert
Verifies that the actual RangeMap is not empty.
isPresent() - Method in class org.assertj.guava.api.OptionalAssert
Verifies that the actual Optional contains a (non-null) instance.

K

key - Variable in class org.assertj.guava.data.MapEntry
 

M

MapEntry<K,V> - Class in org.assertj.guava.data
This is generic version of MapEntry
MultimapAssert<K,V> - Class in org.assertj.guava.api
Assertions for guava Multimap.
MultimapAssert(Multimap<K, V>) - Constructor for class org.assertj.guava.api.MultimapAssert
 

O

OptionalAssert<T> - Class in org.assertj.guava.api
Assertions for guava Optional.
OptionalAssert(Optional<T>) - Constructor for class org.assertj.guava.api.OptionalAssert
 
OptionalShouldBeAbsent - Class in org.assertj.guava.error
Creates an error message indicating that an Optional which should be absent is actually present
OptionalShouldBePresent - Class in org.assertj.guava.error
Creates an error message indicating that an Optional which should be present is absent
OptionalShouldBePresentWithValue - Class in org.assertj.guava.error
Creates an error message indicating that an Optional should contain an expected value
org.assertj.guava.api - package org.assertj.guava.api
 
org.assertj.guava.data - package org.assertj.guava.data
 
org.assertj.guava.error - package org.assertj.guava.error
 
org.assertj.guava.util - package org.assertj.guava.util
 

R

RangeAssert<T extends Comparable<T>> - Class in org.assertj.guava.api
Assertions for guava Range.
RangeAssert(Range<T>) - Constructor for class org.assertj.guava.api.RangeAssert
 
RangeMapAssert<K extends Comparable<K>,V> - Class in org.assertj.guava.api
Assertions for guava RangeMap.
RangeMapAssert(RangeMap<K, V>) - Constructor for class org.assertj.guava.api.RangeMapAssert
 
RangeShouldBeClosedInTheLowerBound - Class in org.assertj.guava.error
 
RangeShouldBeClosedInTheLowerBound(String, Object...) - Constructor for class org.assertj.guava.error.RangeShouldBeClosedInTheLowerBound
Creates a new BasicErrorMessageFactory.
RangeShouldBeClosedInTheUpperBound - Class in org.assertj.guava.error
 
RangeShouldBeClosedInTheUpperBound(String, Object...) - Constructor for class org.assertj.guava.error.RangeShouldBeClosedInTheUpperBound
Creates a new BasicErrorMessageFactory.
RangeShouldBeOpenedInTheLowerBound - Class in org.assertj.guava.error
 
RangeShouldBeOpenedInTheLowerBound(String, Object...) - Constructor for class org.assertj.guava.error.RangeShouldBeOpenedInTheLowerBound
Creates a new BasicErrorMessageFactory.
RangeShouldBeOpenedInTheUpperBound - Class in org.assertj.guava.error
 
RangeShouldBeOpenedInTheUpperBound(String, Object...) - Constructor for class org.assertj.guava.error.RangeShouldBeOpenedInTheUpperBound
Creates a new BasicErrorMessageFactory.
RangeShouldHaveLowerEndpointEqual - Class in org.assertj.guava.error
 
RangeShouldHaveUpperEndpointEqual - Class in org.assertj.guava.error
 

S

shouldBeAbsent(Optional<T>) - Static method in class org.assertj.guava.error.OptionalShouldBeAbsent
 
shouldBePresent(Optional<T>) - Static method in class org.assertj.guava.error.OptionalShouldBePresent
 
shouldBePresentWithValue(Optional<T>, Object) - Static method in class org.assertj.guava.error.OptionalShouldBePresentWithValue
 
shouldBePresentWithValue(Object) - Static method in class org.assertj.guava.error.OptionalShouldBePresentWithValue
 
ShouldContainKeys - Class in org.assertj.guava.error
Creates an error message indicating that an assertion that verifies a map contains some keys failed.
shouldContainKeys(Object, Object[], Set<?>) - Static method in class org.assertj.guava.error.ShouldContainKeys
Creates a new ShouldContainKeys.
ShouldContainValues - Class in org.assertj.guava.error
Creates an error message indicating that an assertion that verifies a map contains some values failed.
shouldContainValues(Object, Object[], Set<?>) - Static method in class org.assertj.guava.error.ShouldContainValues
Creates a new ShouldContainValues.
shouldHaveClosedLowerBound(Range<T>) - Static method in class org.assertj.guava.error.RangeShouldBeClosedInTheLowerBound
 
shouldHaveClosedUpperBound(Range<T>) - Static method in class org.assertj.guava.error.RangeShouldBeClosedInTheUpperBound
 
shouldHaveEqualLowerEndpoint(Range<T>, Object) - Static method in class org.assertj.guava.error.RangeShouldHaveLowerEndpointEqual
 
shouldHaveEqualUpperEndpoint(Range<T>, Object) - Static method in class org.assertj.guava.error.RangeShouldHaveUpperEndpointEqual
 
shouldHaveOpenedLowerBound(Range<T>) - Static method in class org.assertj.guava.error.RangeShouldBeOpenedInTheLowerBound
 
shouldHaveOpenedUpperBound(Range<T>) - Static method in class org.assertj.guava.error.RangeShouldBeOpenedInTheUpperBound
 
ShouldHaveSize - Class in org.assertj.guava.error
Creates an error message indicating that an assertion that verifies that a value have certain size failed.
shouldHaveSize(Object, long, long) - Static method in class org.assertj.guava.error.ShouldHaveSize
Creates a new ShouldHaveSize.

T

TableAssert<R,C,V> - Class in org.assertj.guava.api
 
TableAssert(Table<R, C, V>) - Constructor for class org.assertj.guava.api.TableAssert
 
TableShouldContainCell - Class in org.assertj.guava.error
 
tableShouldContainCell(Table<R, C, V>, R, C, V, V) - Static method in class org.assertj.guava.error.TableShouldContainCell
Creates a new TableShouldContainCell.
TableShouldContainColumns - Class in org.assertj.guava.error
 
TableShouldContainColumns(Object, Object[], Set<?>) - Constructor for class org.assertj.guava.error.TableShouldContainColumns
 
tableShouldContainColumns(Object, Object[], Set<?>) - Static method in class org.assertj.guava.error.TableShouldContainColumns
 
TableShouldContainRows - Class in org.assertj.guava.error
 
TableShouldContainRows(Object, Object[], Set<?>) - Constructor for class org.assertj.guava.error.TableShouldContainRows
 
tableShouldContainRows(Object, Object[], Set<?>) - Static method in class org.assertj.guava.error.TableShouldContainRows
 
TableShouldHaveColumnCount - Class in org.assertj.guava.error
 
tableShouldHaveColumnCount(Object, int, int) - Static method in class org.assertj.guava.error.TableShouldHaveColumnCount
TableShouldHaveRowCount - Class in org.assertj.guava.error
 
tableShouldHaveRowCount(Object, int, int) - Static method in class org.assertj.guava.error.TableShouldHaveRowCount
throwIllegalArgumentExceptionIfTrue(boolean, String, Object...) - Static method in class org.assertj.guava.util.ExceptionUtils
Throws a IllegalArgumentException if given condition is true with message formatted with given arguments using String.format(String, Object...).
toString() - Method in class org.assertj.guava.data.MapEntry
 

V

value - Variable in class org.assertj.guava.data.MapEntry
 
A B C D E G H I K M O R S T V 
Skip navigation links

Copyright © 2015 AssertJ. All rights reserved.