Schach/src/test/java/de/mannheim/th/chess/AppTest.java

20 lines
298 B
Java

package de.mannheim.th.chess;
import static org.junit.jupiter.api.Assertions.assertTrue;
import org.junit.jupiter.api.Test;
/**
* Unit test for simple App.
*/
public class AppTest {
/**
* Rigorous Test :-)
*/
@Test
public void shouldAnswerWithTrue() {
assertTrue(true);
}
}