MeAhere

Results 1 issues of MeAhere

项目框架:springboot 1.5.9 测试用例 @RunWith(SpringJUnit4ClassRunner.class) @ContextConfiguration(locations = "classpath:spring-config.xml") public class XxMapperTest { @Resource private XxMapper xxMapper; @Test public void test_get_xx() { Entity entity=new Entity(); entity.setA(System.currentTimeMillis()); entity.setB(1); xxMapper.insert(entity); Entity queryEntity= xxMapper.getXx(entity.getA(), entity.getB());...