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