public class ArrayMatchers
extends java.lang.Object
| Modifier and Type | Method and Description |
|---|---|
static <T> org.hamcrest.Matcher<T[]> |
containsAllItemsOf(java.util.Collection<T> expectedItems) |
static <T> org.hamcrest.Matcher<T[]> |
containsAllItemsOf(T... expectedItems) |
static <T> org.hamcrest.Matcher<T[]> |
containsItemsOf(java.util.Collection<T> expectedItems) |
static <T> org.hamcrest.Matcher<T[]> |
containsItemsOf(T... expectedItems) |
static <T> org.hamcrest.Matcher<T[]> |
hasSameSizeAs(java.lang.Object what) |
static <T> org.hamcrest.Matcher<T[]> |
hasSize(int size) |
static <T> org.hamcrest.Matcher<T[]> |
isEqualTo(java.lang.Iterable<T> expectedItems) |
static <T> org.hamcrest.Matcher<T[]> |
isEqualTo(T... expectedItems) |
@SafeVarargs
@Nonnull
public static <T> org.hamcrest.Matcher<T[]> isEqualTo(@Nullable
T... expectedItems)
@Nonnull
public static <T> org.hamcrest.Matcher<T[]> isEqualTo(@Nonnull
java.lang.Iterable<T> expectedItems)
@SafeVarargs
@Nonnull
public static <T> org.hamcrest.Matcher<T[]> containsAllItemsOf(@Nullable
T... expectedItems)
@Nonnull
public static <T> org.hamcrest.Matcher<T[]> containsAllItemsOf(@Nonnull
java.util.Collection<T> expectedItems)
@SafeVarargs
@Nonnull
public static <T> org.hamcrest.Matcher<T[]> containsItemsOf(@Nullable
T... expectedItems)
@Nonnull
public static <T> org.hamcrest.Matcher<T[]> containsItemsOf(@Nonnull
java.util.Collection<T> expectedItems)
@Nonnull
public static <T> org.hamcrest.Matcher<T[]> hasSize(@Nonnegative
int size)
@Nonnull
public static <T> org.hamcrest.Matcher<T[]> hasSameSizeAs(@Nullable
java.lang.Object what)
Copyright © 2015 echocat. All Rights Reserved.