@SpringBootTest(webEnvironment= WebEnvironment.NONE) @AutoConfigureStubRunner(ids = "com.example:provider:+:8081", stubsMode = StubRunnerProperties.StubsMode.LOCAL) public class CustomerGatewayTest { @Autowired private CustomerGateway gateway; @Test void getAllCustomers() { List customers = this.gateway.getAllCustomers(); BDDAssertions.then(customers).size().isEqualTo(2); BDDAssertions.then(customers.iterator().next().getId()).isEqualTo(1L); BDDAssertions.then(customers.iterator().next().getName()).isEqualTo("Test 01"); } }