HomeSort by relevance Sort by last modified time
    Searched defs:arrayWithSize (Results 1 - 7 of 7) sorted by null

  /external/hamcrest/hamcrest-library/src/main/java/org/hamcrest/collection/
IsArrayWithSize.java 26 * <pre>assertThat(new String[]{"foo", "bar"}, arrayWithSize(equalTo(2)))</pre>
31 public static <E> Matcher<E[]> arrayWithSize(Matcher<? super Integer> sizeMatcher) {
39 * <pre>assertThat(new String[]{"foo", "bar"}, arrayWithSize(2))</pre>
44 public static <E> Matcher<E[]> arrayWithSize(int size) {
45 return arrayWithSize(equalTo(size));
56 Matcher<E[]> isEmpty = arrayWithSize(0);
  /external/hamcrest/hamcrest-library/src/main/java/org/hamcrest/
Matchers.java 706 * <pre>assertThat(new String[]{"foo", "bar"}, arrayWithSize(equalTo(2)))</pre>
711 public static <E> org.hamcrest.Matcher<E[]> arrayWithSize(org.hamcrest.Matcher<? super java.lang.Integer> sizeMatcher) {
712 return org.hamcrest.collection.IsArrayWithSize.<E>arrayWithSize(sizeMatcher);
719 * <pre>assertThat(new String[]{"foo", "bar"}, arrayWithSize(2))</pre>
724 public static <E> org.hamcrest.Matcher<E[]> arrayWithSize(int size) {
725 return org.hamcrest.collection.IsArrayWithSize.<E>arrayWithSize(size);
    [all...]
  /prebuilts/misc/common/robolectric/3.1.1/lib/
hamcrest-library-1.3.jar 
  /prebuilts/misc/common/robolectric/3.4.2/lib/
hamcrest-library-1.3.jar 
  /prebuilts/misc/common/robolectric/3.5.1/lib/
hamcrest-library-1.3.jar 
  /prebuilts/misc/common/robolectric/3.6.1/lib/
hamcrest-library-1.3.jar 
  /prebuilts/tools/common/m2/repository/org/hamcrest/hamcrest-library/1.3/
hamcrest-library-1.3.jar 

Completed in 560 milliseconds