blob: 173dbb741fc506cb6d71548f98329ce2e335d293 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
package market.guess.ui.console;
import static org.junit.jupiter.api.Assertions.assertTrue;
import org.junit.jupiter.api.Test;
public class AppTest {
@Test
void deterministicTest() {
assertTrue(true);
}
}
|