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