| 123456789101112131415161718 |
- package com.seecoder.dataanalysis.eval.impl;
- import com.seecoder.dataanalysis.analysis.RecommandService;
- import org.junit.jupiter.api.Test;
- import org.springframework.beans.factory.annotation.Autowired;
- import org.springframework.boot.test.context.SpringBootTest;
- @SpringBootTest
- public class RecommandServiceImplTest {
- @Autowired
- private RecommandService recommandService;
- @Test
- void testRecommand(){
- recommandService.getRecommandById(2);
- }
- }
|