<span style="font-size:24px;">import static org.hamcrest.Matchers.*;
import static org.junit.Assert.assertThat;</span>
<span style="font-size:24px;">assertThat("Hello World", is(equalTo("")));
//assertThat("Hello", is(allOf(notNullValue(), instanceOf(String.class), equalTo("Hello"))));
// assertThat("Hello", is(not(allOf(notNullValue(), instanceOf(Integer.class)))));
//assertThat("Hello", is(any(String.class)));
//assertThat("Hello", is(anyOf(nullValue(), instanceOf(String.class), equalTo("Goodbye"))));
/*Matcher< ?> matcher = describedAs("My Description", anything());
Description description = new StringDescription().appendDescriptionOf(matcher);
assertThat("My Descriptions", is(description.toString()));*/
//assertThat("Hello", is(is(is(notNullValue()))));</span>
Junit.jar+hamcrest-all.jar