package com.lzy.test2023; import com.lzy.test2023.repository.StudentRepository; import org.junit.jupiter.api.Test; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.boot.test.context.SpringBootTest; import java.util.List; @SpringBootTest class Test2023ApplicationTests { @Autowired private StudentRepository studentRepository; @Test void contextLoads() { List<String> listClazz = studentRepository.findClazz(); for(String clazz:listClazz){ System.out.println(clazz); } } }
时间: 2024-04-27 18:20:04 浏览: 103
夏普AR-169维修手册.pdf
这段代码是Java语言的代码,它使用了SpringBoot框架的@SpringBootTest注解,表示这是一个SpringBoot应用的测试类。在测试方法contextLoads()中,使用了@Autowired注解,将StudentRepository自动注入到测试类中。然后通过调用findClazz()方法获取所有班级的信息,并打印出来。如果你遇到了测试失败的问题,请检查代码和依赖是否正确。
阅读全文