You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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. }