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

package com.ugsbo.spike;
import static org.junit.Assert.assertTrue;
import org.junit.Test;
/**
* Unit test that Only tests the the expected funktionallity of JUnit.
*/
public class JUnitSetupTest {
/**
* This Test only tests that the assertTrue funktion works like expected.
*/
@Test
public void shouldAlwaysBeTrue() {
assertTrue("The JUnit setup isn not correct, this test only assertTrue.", true);
}
}