github.com/sercand/please@v13.4.0+incompatible/test/IndividualTest.java (about)

     1  package build.please.test;
     2  
     3  import org.junit.Test;
     4  
     5  import static org.junit.Assert.*;
     6  
     7  
     8  public class IndividualTest {
     9    // Test for running individual Java tests.
    10  
    11    @Test
    12    public void testFirstThing() {
    13      assertEquals(42, 6 * 7);
    14    }
    15  
    16    @Test
    17    public void testOtherThing() {
    18      assertEquals(19, 10 + 9);
    19    }
    20  }