1
0
forked from jk_yinzy/cicd-test

添加测试

Signed-off-by: testuser <test@jk.com>
This commit is contained in:
testuser 2025-12-05 18:17:59 +08:00
parent 9cb3238d93
commit 58052c962a

View File

@ -5,4 +5,8 @@ import static org.junit.jupiter.api.Assertions.*;
public class AppTest { public class AppTest {
@Test public void testGreet() { App app = new App(); assertEquals("Hello, World!", app.greet()); } @Test public void testGreet() { App app = new App(); assertEquals("Hello, World!", app.greet()); }
@Test
public void test1() {
int a = 5;
}
} }