Given that:
int[] a = {1, 2, 3, 4};
int[] b = {1, 2, 3, 4, 5};How to asser that "a" is a subset of "b" using hamcrest matchers?
The following works
assertThat(Arrays.asList(b), hasItems(a));But since I am creating "a" from "b", I would prefer to apply the asserts on "a" as the value. Something like
assertThat(a, isSubsetOf(b));Additionally it is preferable to avoid converting the array to a list.
--
You received this message because you are subscribed to the Google Groups "Hamcrest Java Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to hamcrest-jav...@googlegroups.com.
To post to this group, send email to hamcre...@googlegroups.com.
Visit this group at http://groups.google.com/group/hamcrest-java.
For more options, visit https://groups.google.com/d/optout.