use of io.github.resilience4j.test.HelloWorldService in project resilience4j by resilience4j.
the class RateLimiterMetricsTest method setUp.
@Before
public void setUp() {
metricRegistry = new MetricRegistry();
helloWorldService = mock(HelloWorldService.class);
}
use of io.github.resilience4j.test.HelloWorldService in project resilience4j by resilience4j.
the class RetryMetricsTest method setUp.
@Before
public void setUp() {
metricRegistry = new MetricRegistry();
helloWorldService = mock(HelloWorldService.class);
}
use of io.github.resilience4j.test.HelloWorldService in project resilience4j by resilience4j.
the class TimerTest method setUp.
@Before
public void setUp() {
metricRegistry = new MetricRegistry();
timer = Timer.ofMetricRegistry(TimerTest.class.getName(), metricRegistry);
helloWorldService = mock(HelloWorldService.class);
}
Aggregations