1
2
3
4
5
6
7
8
9
10
11
12
| package com.hbbohua.gitStudy;
|
| import org.junit.Test;
|
| public class HelloWorldTest {
| @Test
| public void test1(){
| System.out.println("hello test....");
| System.out.println("hello test2....");
| System.out.println("hello test3...");
| }
| }
|
|