86

I am relatively new to matchers. I am toying around with hamcrest in combination with JUnit and I kinda like it.

Is there a way, to state that one of multiple choices is correct?

Something like

assertThat( result, is( either( 1, or( 2, or( 3 ) ) ) ) ) //does not work in hamcrest

The method I am testing returns one element of a collection. The list may contain multiple candidates. My current implementation returns the first hit, but that is not a requirement. I would like my testcase to succeed, if any of the possible candidates is returned. How would you express this in Java?

(I am open to hamcrest-alternatives)

Bengt
  • 14,011
  • 7
  • 48
  • 66
Mo.
  • 15,033
  • 14
  • 47
  • 57

3 Answers3

137
assertThat(result, anyOf(equalTo(1), equalTo(2), equalTo(3)))

From Hamcrest tutorial:

anyOf - matches if any matchers match, short circuits (like Java ||)

See also Javadoc.

Moreover, you could write your own Matcher, which is quite easy to do.

marcospereira
  • 12,045
  • 3
  • 46
  • 52
87

marcos is right, but you have a couple other options as well. First of all, there is an either/or:

assertThat(result, either(is(1)).or(is(2)));

but if you have more than two items it would probably get unwieldy. Plus, the typechecker gets weird on stuff like that sometimes. For your case, you could do:

assertThat(result, isOneOf(1, 2, 3))

or if you already have your options in an array/Collection:

assertThat(result, isIn(theCollection))

See also Javadoc.

schnatterer
  • 7,525
  • 7
  • 61
  • 80
Tyler
  • 21,762
  • 11
  • 61
  • 90
  • Hmmm... for some inexplicable reason my Eclipse environment (which is only about 6 months old) has an ancient Hamcrest library and I don't get these goodies. – CurtainDog Jun 27 '12 at 06:50
  • 1
    Well, `assertThat((Set)null, is(either(empty()).or(nullValue())));` gives me a rather strange assertion error: `Expected: is (an empty collection or null) but: was null` for hamcrest `1.3`... – Jezor Apr 05 '18 at 13:05
  • isOneOf() seems to be deprecated now. – Jolta Feb 21 '20 at 15:06
0

In addition to the anyOf, you could also go for the either option, but it has a slightly different syntax:

assertThat(result, either(is(1)).or(is(2)).or(is(3))))
Jacob van Lingen
  • 8,989
  • 7
  • 48
  • 78