// Project: UnitTests // Module: testgreeter // Source code file: GreeterTest.java // The unittest class GreeterTest tests the // makeGreeting method in the Greeter class. import org.junit.jupiter.api.Test; import static org.junit.jupiter.api.Assertions.*; class GreeterTest { @Test void testMakeGreeting( ) { assertEquals("Hello, Alice, how are you?", Greeter.makeGreeting("Alice")); } }