import org.junit.Test;import org.junit.runner.RunWith;import org.springframework.beans.factory.annotation.Autowired;import org.springframework.boot.test.context.SpringBootTest;import org.springframework.test.context.junit4.SpringRunner;import java.util.Arrays;import java.util.HashMap;import java.util.List;import java.util.Map;@RunWith(SpringRunner.class)@SpringBootTestpublic class StaticsServiceImplTest { @Autowired private TesterviceImpl service; @Test public void ff() { Map map = new HashMap(); map.put("CXLX","1"); List<Map> list = service.test(); System.out.println(Arrays.toString(list.toArray())); } @Test void fff() { }}
来源:https://www.cnblogs.com/shihx/p/12577605.html