統合テストでは、実際のリモートサーバーを使用してREST APIを使用します。 外部エンティティに依存しない単体テスト内でそれらの応答を提供する最も簡単な方法は何ですか。 一つの可能なアプローチが public class TestHttpResponse implements org.apache.http.client.methods.CloseableHttpResponse
ove
@RunWith(MockitoJUnitRunner.class)
public class FeatureFlipperManagerTest {
@Autowired
RestTemplate restTemplate = new RestTemplate();
@Autowired
Service service = new Service();