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

package com.ugsbo.matrixcalc;
import static org.junit.Assert.assertTrue;
import org.junit.Test;
/**
* Testet die Matrix Multiplication funkionalität
*/
public class MatrixMultiplicationTest {
/**
* This Test only tests that the assertTrue funktion works like expected.
*/
@Test
public void shouldAlwaysBeTrue() {
//TODO replace this test through a real one!!
assertTrue("The JUnit setup is not correct, this test only assertTrue.", true);
}
}