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.

36 lines
646 B

  1. package gruppenprojekt;
  2. import static org.junit.Assert.*;
  3. import org.junit.After;
  4. import org.junit.AfterClass;
  5. import org.junit.Before;
  6. import org.junit.BeforeClass;
  7. import org.junit.Test;
  8. public class TestJUnit {
  9. // https://www.softwaretestinghelp.com/download-and-install-junit/#Set_Up_Environment_Variables
  10. @BeforeClass
  11. public static void setUpBeforeClass() throws Exception {
  12. }
  13. @AfterClass
  14. public static void tearDownAfterClass() throws Exception {
  15. }
  16. @Before
  17. public void setUp() throws Exception {
  18. }
  19. @After
  20. public void tearDown() throws Exception {
  21. }
  22. @Test
  23. public void test() {
  24. //fail("Not yet implemented");
  25. }
  26. }