Is there a nicer way to write in jUnit

String x = "foo bar";
Assert.assertTrue(x.contains("foo"));
link|improve this question

71% accept rate
feedback

3 Answers

up vote 9 down vote accepted

If you add in Hamcrest and JUnit4, you could do:

String x = "foo bar";
Assert.assertThat(x, Matchers.containsString("foo"));

With some static imports, it looks a lot better:

assertThat(x, containsString("foo"));
link|improve this answer
A code sample always wins :) – ripper234 Jul 7 '09 at 13:07
It doesn't compile :) – pjp Jul 7 '09 at 13:24
feedback

How about Assert.assertTrue("foo bar".contains("foo"))? :-)

link|improve this answer
6  
Oh come on - It was a joke! – Adamski Jul 7 '09 at 13:09
1  
I agree that SO needs a better humor outlet, but in the meantime, stick to humor in the comments. (I didn't downvote, BTW). – Yishai Jul 7 '09 at 13:14
1  
Humour is not tolerable – oxbow_lakes Jul 7 '09 at 13:26
5  
This wasn't downvoted due to SO intolerance of humor, this just wasn't funny :) – Tim Post Jul 8 '09 at 10:47
If you think that's bad check out some of the jokes here: stackoverflow.com/questions/234075/… – Adamski Jul 8 '09 at 11:10
show 1 more comment
feedback

Use the new assertThat syntax together with Hamcrest.

It is available starting with JUnit 4.4.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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