Ultra Geile Studenten Benutzer Oberfläche (UGSBO)
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.

18 lines
443 B

  1. package com.ugsbo.spike;
  2. import static org.junit.Assert.assertTrue;
  3. import org.junit.Test;
  4. /**
  5. * Unit test that Only tests the the expected funktionallity of JUnit.
  6. */
  7. public class JUnitSetupTest {
  8. /**
  9. * This Test only tests that the assertTrue funktion works like expected.
  10. */
  11. @Test
  12. public void shouldAlwaysBeTrue() {
  13. assertTrue("The JUnit setup isn not correct, this test only assertTrue.", true);
  14. }
  15. }