packagecom.tanpu.feo.feojob.service;importcom.tanpu.feo.feojob.entity.DemoEntity;importorg.junit.Assert;importorg.junit.Test;importorg.junit.runner.RunWith;importorg.springframework.boot.test.context.SpringBootTest;importorg.springframework.test.context.junit4.SpringRunner;importjavax.annotation.Resource;importjava.util.List;/** * created by xd on 2021/5/18 */@RunWith(SpringRunner.class)@SpringBootTestpublicclassDemoServiceTest{@ResourceprivateDemoServicedemoService;@TestpublicvoidtestGetByName(){List<DemoEntity>all=demoService.getByName("Jack");Assert.assertEquals(3,all.size());}}