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