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

Is there a nicer way to write in jUnit

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

4 Answers

up vote 18 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"));
share|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
1  
Be sure you're using org.junit.Assert versus junit.framework.Assert, as the latter doesn't have the Hamcrest Matcher assertThat() – Visionary Software Solutions Aug 8 '12 at 17:09
1  
I think when running JUnit 4.10, the class to use is org.junit.matchers.JUnitMatchers, e.g.: assertThat("something", JUnitMatchers.containsString("some")); – Ewen Cartwright Feb 21 at 13:04
The failure message for a failing assertThat is way more helpful then an assertTrue – Mike Rylander Apr 1 at 15:04

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

share|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
6  
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

Use the new assertThat syntax together with Hamcrest.

It is available starting with JUnit 4.4.

share|improve this answer

use fest assert 2.0 whenever possible

assertThat(x).contains("foo");
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.