@@ -23,7 +23,7 @@ public PactDslWithProvider hasPactWith(String provider) {
23
23
return new PactDslWithProvider (provider );
24
24
}
25
25
26
- class PactDslWithProvider {
26
+ public class PactDslWithProvider {
27
27
private String providerName ;
28
28
public PactDslWithProvider (String provider ) {
29
29
this .providerName = provider ;
@@ -33,7 +33,7 @@ public PactDslWithState given(String state) {
33
33
return new PactDslWithState (state );
34
34
}
35
35
36
- class PactDslWithState {
36
+ public class PactDslWithState {
37
37
private String state ;
38
38
public PactDslWithState (String state ) {
39
39
this .state = state ;
@@ -43,7 +43,7 @@ public PactDslRequestWithoutPath uponReceiving(String description) {
43
43
return new PactDslRequestWithoutPath (description );
44
44
}
45
45
46
- class PactDslRequestWithoutPath {
46
+ public class PactDslRequestWithoutPath {
47
47
private String description ;
48
48
public PactDslRequestWithoutPath (String description ) {
49
49
this .description = description ;
@@ -75,7 +75,7 @@ public PactDslRequestWithPath path(String path) {
75
75
}
76
76
}
77
77
78
- class PactDslRequestWithPath {
78
+ public class PactDslRequestWithPath {
79
79
private Consumer consumer ;
80
80
private Provider provider ;
81
81
@@ -135,7 +135,7 @@ public PactDslResponse willRespondWith() {
135
135
}
136
136
}
137
137
138
- class PactDslResponse {
138
+ public class PactDslResponse {
139
139
private PactDslRequestWithPath existing ;
140
140
141
141
public PactDslResponse (PactDslRequestWithPath existing ) {
0 commit comments