Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions devview-networkmock-ktor/api/api.txt
Original file line number Diff line number Diff line change
@@ -1,11 +1,6 @@
// Signature format: 4.0
package com.worldline.devview.networkmock.ktor.plugin {

public final class MockHttpClientCall extends io.ktor.client.call.HttpClientCall {
ctor public MockHttpClientCall(io.ktor.client.HttpClient client);
ctor public MockHttpClientCall(io.ktor.client.HttpClient client, io.ktor.client.request.HttpRequestData mockRequestData, io.ktor.client.request.HttpResponseData mockResponseData);
}

public final class NetworkMockConfig {
ctor public NetworkMockConfig();
method @InaccessibleFromKotlin public com.worldline.devview.networkmock.core.repository.MockConfigRepository? getMockRepository();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -352,8 +352,8 @@ private fun createMockHttpClientCall(
* a synthetic response. Both [request] and [response] are set immediately in
* the secondary constructor so the call is fully usable upon creation.
*/
public class MockHttpClientCall(client: HttpClient) : HttpClientCall(client) {
public constructor(
internal class MockHttpClientCall(client: HttpClient) : HttpClientCall(client) {
constructor(
client: HttpClient,
mockRequestData: HttpRequestData,
mockResponseData: HttpResponseData
Expand Down
Loading