MCPcopy
hub / github.com/Aider-AI/aider / Test

Class Test

tests/fixtures/languages/java/test.java:5–16  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3}
4
5public class Test implements Greeting {
6 private String prefix = "Hello";
7
8 public String greet(String name) {
9 return prefix + ", " + name + "!";
10 }
11
12 public static void main(String[] args) {
13 Test greeter = new Test();
14 System.out.println(greeter.greet("World"));
15 }
16}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected