Bootstrap

SpringBoot测试

使用注解
@RunWith(SpringRunner.class)
@SpringBootTest(classes = StudyTestApplication.class)

注意当测试类包名与启动类包名相同或者在其子包下。使用@SpringBootTest 不需要在括号内注明启动类

package test;

import com.studytest.StudyTestApplication;
import com.studytest.service.UserService;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringRunner;

@RunWith(SpringRunner.class)
//包名与启动类不同,在SpringBootTest中注明启动类
@SpringBootTest(classes = StudyTestApplication.class)
//@SpringBootTest
public class UserServiceTest {
    @Autowired
    UserService userService;

    @Test
    public void testAdd() {
        System.out.println("testAdd");
        userService.add();
    }

}

悦读

道可道,非常道;名可名,非常名。 无名,天地之始,有名,万物之母。 故常无欲,以观其妙,常有欲,以观其徼。 此两者,同出而异名,同谓之玄,玄之又玄,众妙之门。

;