好处不说了
Eval360RatingService#find360Score
tip-front
模块的src/test/java
目录下新建对应的包
com.minto.app.performance.service.impl
Eval360RatingServiceImplTest
测试类该类需要继承TestCase
基类
import static org.junit.jupiter.api.Assertions.*;
import com.minto.tip.test.TestCase;
class Eval360RatingServiceImplTest extends TestCase {
@Autowired
private Eval360RatingService eval360RatingService;
@Test
void find360Score() throws BusinessException {
// 测试接口
assertTrue(CollectionUtil.isNotEmpty(eval360RatingService.find360Score(565640502972926771L,
List.of(ResourceEnum.ResourceTypeEnum.OrgPerson.getResourceKey(9010535345073767852L)))));
}
}
运行测试
tip-front
模块下,写在其他模块没有效果。