mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-03-22 15:19:59 +07:00
13 lines
263 B
Java
13 lines
263 B
Java
import org.hamcrest.Matchers;
|
|
import org.junit.Test;
|
|
|
|
import static org.junit.Assert.assertThat;
|
|
|
|
public class Sample<caret>Test {
|
|
|
|
@Test
|
|
public void differentAssertions() {
|
|
assertThat(1, Matchers.is(1));
|
|
assertThat("reason", 1, Matchers.is(1));
|
|
}
|
|
} |