- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 Cucumber 和 Spring Boot 进行测试
@CucumberContextConfiguration
@ActiveProfiles(profiles = { "cucumber" })
@SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.NONE)
@ExtendWith(SpringExtension.class)
public class FooTest {
@Autowired
BatchService batchService;
@MockBean
S3ClientService s3ClientService;
@MockBean
HttpClientService httpClientService;
@SpyBean
UndueService undueService;
@Given("^foo cucumber test$")
public void foo_cucumber_test() {
System.out.println("Foo Test");
}
}
当我在@Given 方法上使用断点运行/调试我的测试时
我得到了这个奇怪的行为,@Mockbean
/@SpyBean
被正确注入(inject),但在测试类中它的值为 null
!!而且我无法运行 Mockito 函数 verify
或 when
但是当我在没有 cucumber 的情况下运行测试时
@Test
void fooTest() {
System.out.println("Foo Test");
}
效果不错!!值不为 null
最佳答案
因此,模拟 bean 已创建但未注入(inject)到测试套件。我想你应该同时添加 @Autowired
和 @MockBean
注释。
关于java - @MockBean 正确注入(inject)但在测试类上具有空值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68269912/
我正在尝试使用@MockBean; java 版本 11、Spring Framework 版本 (5.3.8)、Spring Boot 版本 (2.5.1) 和 Junit Jupiter (5.7
我有一个使用多种服务的 Controller 类。我为该 Controller 编写了一个测试,例如: @RunWith(SpringRunner.class) @WebMvcTest(value =
在我的 Spring Boot 测试中,我使用了 2 个具有不同限定符的模拟 bean: @RunWith(SpringRunner.class) @SpringBootTest class Hoho
是否可以用真正的@Bean替换继承的@MockBean? 我有一个抽象类,它为所有 ITest 定义了许多配置和设置。仅对于一个测试,我想使用真实的 bean,而不是使用模拟的 bean。但仍然继承其
我有一个将被其他集成测试使用的基本测试场景。此方案包括一些用于外部集成的模拟 bean ( @MockBean )。 今天,我在集成测试类中有这样的东西: @SpringBootTest @WebAp
似乎返回 void 的模拟bean 在测试对象内部调用时不会抛出错误。我可以在外面调用它,但它会抛出错误。我的使用方式有问题吗? //some imports ... @RunWith(SpringR
我可以在 Controller 中使用@Autowired,例如 @RestController public class Index { @Autowired HttpServlet
我有一个使用 @WebMvcTest 的 Spring Boot 测试。我需要更新正在测试的 Controller ,以便它现在接受 Item 列表作为构造函数参数。该元素列表在构造函数中进行解析,以
我有一个配置类,其中有一些 MockBeans 替换了上下文中的实际 bean 以进行测试。 @Configuration public class MyTestConfig { @MockB
我有这个类定义 @RestController public class ReservationController { @Autowired private Reservation
在 Spring 应用程序中,可以使用默认 Autowiring 的模拟 bean 编写测试,并且可以使用常用的 Mockito 方法进一步自定义。为此,使用了@MockedBean 注释。但是,当只
我在 Spring Framework 上运行了几个集成测试,它们扩展了名为 BaseITCase 的基类。 像这样: @RunWith(SpringJUnit4ClassRunner.class)
我有一个 Spring Boot 1.4.2 应用程序。在启动期间使用的一些代码如下所示: @Component class SystemTypeDetector{ public enum S
目录 一个测试方法主要包括三部分 Junit 基本注解介绍 测试方法执行顺序 测试方法命名约定 基于 Spring 的单元测试编写
有了 JUnit,我可以很容易地使用 @MockBean : @SpringBootTest(classes = AppConfig.class) @RunWith(SpringRun
我正在使用 Cucumber 和 Spring Boot 进行测试 @CucumberContextConfiguration @ActiveProfiles(profiles = { "cucumb
我正在使用 Cucumber 和 Spring Boot 进行测试 @CucumberContextConfiguration @ActiveProfiles(profiles = { "cucumb
此问题涉及this one 。一旦确定了问题并成功应用了建议的解决方案,我就继续开发和重构我的代码,直到达到这一点。 正如您在下面的代码中看到的,我为在 Controller GetExchangeR
我有多个安全测试类,我在其中测试对不同 REST 端点的授权,我想模拟 ApplicationContext 将启动的所有存储库的 beans。我正在运行测试并且一切正常,但我不想在每个安全测试类中重
我正在尝试 @MockBean 一个 @Repository 注释类: @Repository public interface ApplicationDao extends MongoReposit
我是一名优秀的程序员,十分优秀!