-
Notifications
You must be signed in to change notification settings - Fork 189
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
spring boot integration test is failing #60
Comments
package com.processor.config; import com.fasterxml.jackson.core.JsonProcessingException; import java.time.Duration; import static com.processor.common.common.Constants.CONTROL_ID_AXON_MESSAGE_KEY; @RunWith(SpringRunner.class)
// Create a CircuitBreakerRegistry with a custom global configuration CircuitBreakerRegistry circuitBreakerRegistry = CircuitBreakerRegistry.of(circuitBreakerConfig);
} package com.processor.config; import io.github.resilience4j.circuitbreaker.CircuitBreaker; import java.time.Duration; import static io.github.resilience4j.circuitbreaker.CircuitBreakerConfig.SlidingWindowType.COUNT_BASED; @slf4j
}package com.processor.service; import com.fasterxml.jackson.core.JsonProcessingException; import java.util.Objects; @configuration
} package com.processor.service; import com.processor.common.Constants; import java.util.Collections; import static com.processor.common.Constants.ENTERPRISE_RATELIMITER; @component
} |
Hello,
we are trying to write the integration/unit test but it is failing or not working as we expected. can you please help us?
dependency details:
<java.version>1.8</java.version>
Basically I tried to run the integration test but it is failing. can you please help me to resolve this issue?
Do you have any sample which help me to refer and correct the issue?
The text was updated successfully, but these errors were encountered: