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