Is there a nicer way to write in jUnit
String x = "foo bar";
Assert.assertTrue(x.contains("foo"));
|
|
|
If you add in Hamcrest and JUnit4, you could do:
With some static imports, it looks a lot better:
|
|||||||||||||||
|
|
How about |
|||||||||||||||||||
|
|
|
|||
|
|
|
use fest assert 2.0 whenever possible
|
|||
|
|