リビジョン a4d24d18
| learn/java/lambda/HelloLambda/test/hellolambda/HelloTest.java | ||
|---|---|---|
|
package hellolambda;
|
||
|
|
||
|
import static org.hamcrest.CoreMatchers.is;
|
||
|
import org.junit.After;
|
||
|
import org.junit.AfterClass;
|
||
|
import static org.junit.Assert.*;
|
||
|
import org.junit.Before;
|
||
|
import org.junit.BeforeClass;
|
||
|
import org.junit.Test;
|
||
|
import static org.junit.Assert.*;
|
||
|
|
||
|
/**
|
||
|
*
|
||
| ... | ... | |
|
Hello.main(args);
|
||
|
}
|
||
|
|
||
|
@Test
|
||
|
public void assertThatの練習() {
|
||
|
String ph = "delta";
|
||
|
assertThat(ph, is("delta"));
|
||
|
}
|
||
|
|
||
|
}
|
||
テストコードでorg.hamcrestパッケージを使うコードを追加