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.

19 lines
491 B

  1. package com.ugsbo.matrixcalc;
  2. import static org.junit.Assert.assertTrue;
  3. import org.junit.Test;
  4. /**
  5. * Testet die Matrix Multiplication funkionalität
  6. */
  7. public class MatrixMultiplicationTest {
  8. /**
  9. * This Test only tests that the assertTrue funktion works like expected.
  10. */
  11. @Test
  12. public void shouldAlwaysBeTrue() {
  13. //TODO replace this test through a real one!!
  14. assertTrue("The JUnit setup is not correct, this test only assertTrue.", true);
  15. }
  16. }