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); } }