Add screensaver files

This commit is contained in:
Sem van der Hoeven
2025-09-02 20:34:20 +02:00
parent 3dd1b85b54
commit e347ea492f
67 changed files with 4048 additions and 26 deletions

0
test/.gitkeep Normal file
View File

16
test/TestStub.java Normal file
View File

@@ -0,0 +1,16 @@
import fi.helsinki.cs.tmc.edutestutils.Points;
import static org.junit.Assert.assertTrue;
import org.junit.Test;
@Points("3-5")
public class TestStub {
@Test
public void testCalls()
{
assertTrue("You shall pass", true);
}
}