9 lines
236 B
Java
9 lines
236 B
Java
package com.example;
|
|
|
|
import org.junit.jupiter.api.Test;
|
|
import static org.junit.jupiter.api.Assertions.*;
|
|
|
|
public class AppTest {
|
|
@Test public void testGreet() { App app = new App(); assertEquals("Hello, World!", app.greet()); }
|
|
}
|