Pruned unused stuff

This commit is contained in:
Imbus 2024-02-08 14:37:06 +01:00
parent 9cb6ce21ef
commit 6c8744d5aa
19 changed files with 5 additions and 34 deletions

View file

@ -1,14 +0,0 @@
/*
* This Java source file was generated by the Gradle 'init' task.
*/
package etsf20;
public class App {
public String getGreeting() {
return "Hello World!";
}
public static void main(String[] args) {
System.out.println(new App().getGreeting());
}
}

View file

@ -1,17 +0,0 @@
/*
* This Java source file was generated by the Gradle 'init' task.
*/
package etsf20;
import org.junit.jupiter.api.Test;
import static org.junit.jupiter.api.Assertions.*;
import org.junit.jupiter.api.Disabled;
class AppTest {
@Disabled
@Test void appHasAGreeting() {
App classUnderTest = new App();
assertNotNull(classUnderTest.getGreeting(), "app should have a greeting");
}
}