package csc207.testing; import static org.junit.jupiter.api.Assertions.assertEquals; import static org.junit.jupiter.api.Assertions.fail; import org.junit.jupiter.api.Test; /** * Tests of the sample methods. * * @author Samuel A. Rebelsky * @author Your Name Here */ public class SampleMethodsTests { /** * A test that should succeed. */ @Test void sampleSuccesfulTest() { assertEquals(2, 2); } // sampleSuccessfulTest() /** * A test that should fail. */ void sampleFailingTest() { assertEquals(2, 3); } // sampleFailingTest() } // class TestSampleMethods