package com.gs.xky; import com.gs.xky.service.XkyService; import org.junit.jupiter.api.Test; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.boot.test.context.SpringBootTest; import java.io.IOException; @SpringBootTest class XkyApplicationTests { @Autowired private XkyService xkyService; @Test void contextLoads() throws IOException { xkyService.GetSaveDetail(); } }