Create basic player #2

Merged
erns6604 merged 3 commits from player into main 2025-10-14 10:30:57 +02:00
3 changed files with 21 additions and 0 deletions
Showing only changes of commit f4723e89ec - Show all commits

View File

@@ -13,5 +13,13 @@
<maven.compiler.target>23</maven.compiler.target> <maven.compiler.target>23</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties> </properties>
<dependencies>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<version>5.8.1</version>
<scope>test</scope>
</dependency>
</dependencies>
</project> </project>

View File

@@ -1,2 +1,3 @@
public class Player { public class Player {
} }

View File

@@ -0,0 +1,12 @@
import org.junit.jupiter.api.Test;
import static org.junit.jupiter.api.Assertions.*;
class PlayerTest {
@Test
public void instantiates() {
var p = new Player();
assertNotNull(p);
}
}