package com.tanpu.feo.feojob.service; import com.tanpu.feo.feojob.entity.DemoEntity; import org.junit.Assert; import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.boot.test.context.SpringBootTest; import org.springframework.test.context.junit4.SpringRunner; import javax.annotation.Resource; import java.util.List; /** * created by xd on 2021/5/18 */ @RunWith(SpringRunner.class) @SpringBootTest public class DemoServiceTest { @Resource private DemoService demoService; @Test public void testGetByName() { List<DemoEntity> all = demoService.getByName("Jack"); Assert.assertEquals(3, all.size()); } }