@RunWith(SpringRunner.class)
@SpringBootTest
public class ProductCategoryRepositoryTest {
@Autowired
private ProductCategoryRepository repository;
@Test
public void findOneTest(){
ProductCategory productCategory=repository.findOne(1);
System.out.println(productCategory.toString());
}i
}
测试通过不了
提示:95 INFO 15352 --- [ Thread-3] o.s.w.c.s.GenericWebApplicationContext : Closing org.springframework.web.context.support.GenericWebApplicationContext@27f981c6: startup date [Wed Aug 16 22:17:29 CST 2017]; root of context hierarchy
2017-08-16 22:17:37.501 INFO 15352 --- [ Thread-3] j.LocalContainerEntityManagerFactoryBean : Closing JPA EntityManagerFactory for persistence unit 'default'
Process finished with exit code -1