blob: d78bc7659b6ba44192330dbb6aae1956eed34853 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
package de.uvok.tuxguitar;
import org.junit.jupiter.api.Test;
import static org.junit.jupiter.api.Assertions.assertTrue;
class ApplicationTest {
@Test
void shouldAnswerWithTrue() {
assertTrue(true);
}
}
|