在集成測試中,我使用真正的遠程服務器來使用REST API。 根據外部實體在單元測試中提供這些響應的最簡單方法是什麼? 一種可能的方法是建立 public class TestHttpResponse implements org.apache.http.client.methods.CloseableHttpResponse
override
@Override
public
@RunWith(MockitoJUnitRunner.class)
public class FeatureFlipperManagerTest {
@Autowired
RestTemplate restTemplate = new RestTemplate();
@Autowired
Service service = new Service();