| 1 | package Project; |
| 2 | |
| 3 | public class App { |
| 4 | public String getGreeting() { |
| 5 | return "Hello World!"; |
| 6 | } |
| 7 | |
| 8 | public static void main(String[] args) { |
| 9 | System.out.println(new App().getGreeting()); |
| 10 | } |
| 11 | } |
nothing calls this directly
no outgoing calls
no test coverage detected