選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

ExampleUnitTest.java 316B

123456789101112131415
  1. package coffee.mort.minesweeper;
  2. import org.junit.Test;
  3. import static org.junit.Assert.*;
  4. /**
  5. * To work on unit tests, switch the Test Artifact in the Build Variants view.
  6. */
  7. public class ExampleUnitTest {
  8. @Test
  9. public void addition_isCorrect() throws Exception {
  10. assertEquals(4, 2 + 2);
  11. }
  12. }