FjsOcrAsyApplicationTests.java 850 B

1234567891011121314151617181920212223242526
  1. // package com.pavis.ai.app.fjsocrasy;
  2. //
  3. // import com.pavis.ai.app.fjsocrasy.form.res.ResData;
  4. // import com.pavis.ai.app.fjsocrasy.service.BackService;
  5. // import org.junit.Test;
  6. // import org.junit.runner.RunWith;
  7. // import org.springframework.beans.factory.annotation.Autowired;
  8. // import org.springframework.boot.test.context.SpringBootTest;
  9. // import org.springframework.test.context.junit4.SpringRunner;
  10. //
  11. // @RunWith(SpringRunner.class)
  12. // @SpringBootTest
  13. // public class FjsOcrAsyApplicationTests {
  14. //
  15. // @Autowired
  16. // private BackService backService;
  17. //
  18. // @Test
  19. // public void contextLoads() {
  20. // ResData resData = new ResData();
  21. // resData.setMidConfidence("2");
  22. // resData.setOverallConfidence("2");
  23. // backService.backToFjs(resData,"10",System.currentTimeMillis(),"1");
  24. // }
  25. //
  26. // }