当前位置: 代码迷 >> 综合 >> How to use Junit and the effact
  详细解决方案

How to use Junit and the effact

热度:71   发布时间:2023-12-16 17:55:41.0
     
import org.junit.Test;
public class TestJunit{public static void main(){;}@Testpublic void test1(){System.out.println("hello");System.out.println(test2());}public int test2() {return 10;}
}

 

  相关解决方案