public class CircuitBreakerProxyTest extends CircuitBreakerTest {
@Override
@Before
public void setupTest() throws Exception {
this.remote = new RemoteSystem();
IRemoteSystem proxy =
CircuitBreaker.protect(this.remote, IRemoteSystem.class, "com.example", "RemoteSystem");
this.service = new LocalServiceWithProxy(proxy);