// Project: UnitTests // Module: testgreeter // Source code file: Greeter.java // The unittest class GreeterTest tests the // makeGreeting method in the Greeter class. public class Greeter { public static String makeGreeting(String name) { return "Hello, " + name + ", how are you?"; } }