forked from jk_yinzy/cicd-test
14 lines
328 B
Java
14 lines
328 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()); }
|
|
@Test
|
|
public void test1() {
|
|
int a = 5;
|
|
System.out.println(a);
|
|
}
|
|
}
|