Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to assert that a given array contains at least one instance of a given element. Is there an assert method that already does this? If so which one?

I am using Java6 and JUnit3.

share|improve this question

2 Answers

up vote 2 down vote accepted

Not a built-in assert, no. You'd need to use assertTrue() and check the array yourself using something like Arrays.binarySearch(), ArrayUtils.contains(), or your own method.

share|improve this answer
the thing I would add is the user might want to build their own TestUtil that has a method testArrayContains(ary, object) – hvgotcodes Jun 24 '11 at 15:31
I went with the ArrayUtils approach, It seems my Project is including Apache Commons. I was about to create my own method, but I might as well use that one. – Tiago Veloso Jun 24 '11 at 15:58
assertTrue(Arrays.asList(yourArray).contains(yourElement)
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.