@@ -29,7 +29,7 @@ import io.kotest.property.internal.proptest
29
29
// 1 parameter
30
30
31
31
/* *
32
- * Use [Fixture] to generate random objects for type parameters and validate the [function] returns true [ forAll] .
32
+ * Use [Fixture] to generate random objects for type parameters and validate the [function] returns true ` forAll` .
33
33
*/
34
34
suspend inline fun <reified A > Fixture.forAll (
35
35
crossinline function : suspend PropertyContext .(a: A ) -> Boolean
@@ -38,7 +38,7 @@ suspend inline fun <reified A> Fixture.forAll(
38
38
}
39
39
40
40
/* *
41
- * Use [Fixture] to generate random objects for type parameters and validate the [function] returns true [ forAll] .
41
+ * Use [Fixture] to generate random objects for type parameters and validate the [function] returns true ` forAll` .
42
42
*/
43
43
suspend inline fun <reified A > Fixture.forAll (
44
44
iterations : Int ,
@@ -48,7 +48,7 @@ suspend inline fun <reified A> Fixture.forAll(
48
48
}
49
49
50
50
/* *
51
- * Use [Fixture] to generate random objects for type parameters and validate the [function] returns true [ forAll] .
51
+ * Use [Fixture] to generate random objects for type parameters and validate the [function] returns true ` forAll` .
52
52
*/
53
53
suspend inline fun <reified A > Fixture.forAll (
54
54
config : PropTestConfig ,
@@ -58,7 +58,7 @@ suspend inline fun <reified A> Fixture.forAll(
58
58
}
59
59
60
60
/* *
61
- * Use [Fixture] to generate random objects for type parameters and validate the [function] returns true [ forAll] .
61
+ * Use [Fixture] to generate random objects for type parameters and validate the [function] returns true ` forAll` .
62
62
*/
63
63
suspend inline fun <reified A > Fixture.forAll (
64
64
iterations : Int ,
@@ -71,30 +71,30 @@ suspend inline fun <reified A> Fixture.forAll(
71
71
// 2 parameters
72
72
73
73
/* *
74
- * Use [Fixture] to generate random objects for type parameters and validate the [function] returns true [ forAll] .
74
+ * Use [Fixture] to generate random objects for type parameters and validate the [function] returns true ` forAll` .
75
75
*/
76
76
suspend inline fun <reified A , reified B > Fixture.forAll (
77
77
noinline function : suspend PropertyContext .(a: A , b: B ) -> Boolean
78
78
) = forAll(kotestGen(), kotestGen(), function)
79
79
80
80
/* *
81
- * Use [Fixture] to generate random objects for type parameters and validate the [function] returns true [ forAll] .
81
+ * Use [Fixture] to generate random objects for type parameters and validate the [function] returns true ` forAll` .
82
82
*/
83
83
suspend inline fun <reified A , reified B > Fixture.forAll (
84
84
iterations : Int ,
85
85
noinline function : suspend PropertyContext .(a: A , b: B ) -> Boolean
86
86
) = forAll(iterations, kotestGen(), kotestGen(), function)
87
87
88
88
/* *
89
- * Use [Fixture] to generate random objects for type parameters and validate the [function] returns true [ forAll] .
89
+ * Use [Fixture] to generate random objects for type parameters and validate the [function] returns true ` forAll` .
90
90
*/
91
91
suspend inline fun <reified A , reified B > Fixture.forAll (
92
92
config : PropTestConfig ,
93
93
noinline function : suspend PropertyContext .(a: A , b: B ) -> Boolean
94
94
) = forAll(config, kotestGen(), kotestGen(), function)
95
95
96
96
/* *
97
- * Use [Fixture] to generate random objects for type parameters and validate the [function] returns true [ forAll] .
97
+ * Use [Fixture] to generate random objects for type parameters and validate the [function] returns true ` forAll` .
98
98
*/
99
99
suspend inline fun <reified A , reified B > Fixture.forAll (
100
100
iterations : Int ,
@@ -105,30 +105,30 @@ suspend inline fun <reified A, reified B> Fixture.forAll(
105
105
// 3 parameters
106
106
107
107
/* *
108
- * Use [Fixture] to generate random objects for type parameters and validate the [function] returns true [ forAll] .
108
+ * Use [Fixture] to generate random objects for type parameters and validate the [function] returns true ` forAll` .
109
109
*/
110
110
suspend inline fun <reified A , reified B , reified C > Fixture.forAll (
111
111
noinline function : suspend PropertyContext .(a: A , b: B , c: C ) -> Boolean
112
112
) = forAll(kotestGen(), kotestGen(), kotestGen(), function)
113
113
114
114
/* *
115
- * Use [Fixture] to generate random objects for type parameters and validate the [function] returns true [ forAll] .
115
+ * Use [Fixture] to generate random objects for type parameters and validate the [function] returns true ` forAll` .
116
116
*/
117
117
suspend inline fun <reified A , reified B , reified C > Fixture.forAll (
118
118
iterations : Int ,
119
119
noinline function : suspend PropertyContext .(a: A , b: B , c: C ) -> Boolean
120
120
) = forAll(iterations, kotestGen(), kotestGen(), kotestGen(), function)
121
121
122
122
/* *
123
- * Use [Fixture] to generate random objects for type parameters and validate the [function] returns true [ forAll] .
123
+ * Use [Fixture] to generate random objects for type parameters and validate the [function] returns true ` forAll` .
124
124
*/
125
125
suspend inline fun <reified A , reified B , reified C > Fixture.forAll (
126
126
config : PropTestConfig ,
127
127
noinline function : suspend PropertyContext .(a: A , b: B , c: C ) -> Boolean
128
128
) = forAll(config, kotestGen(), kotestGen(), kotestGen(), function)
129
129
130
130
/* *
131
- * Use [Fixture] to generate random objects for type parameters and validate the [function] returns true [ forAll] .
131
+ * Use [Fixture] to generate random objects for type parameters and validate the [function] returns true ` forAll` .
132
132
*/
133
133
suspend inline fun <reified A , reified B , reified C > Fixture.forAll (
134
134
iterations : Int ,
@@ -139,30 +139,30 @@ suspend inline fun <reified A, reified B, reified C> Fixture.forAll(
139
139
// 4 parameters
140
140
141
141
/* *
142
- * Use [Fixture] to generate random objects for type parameters and validate the [function] returns true [ forAll] .
142
+ * Use [Fixture] to generate random objects for type parameters and validate the [function] returns true ` forAll` .
143
143
*/
144
144
suspend inline fun <reified A , reified B , reified C , reified D > Fixture.forAll (
145
145
noinline function : suspend PropertyContext .(a: A , b: B , c: C , d: D ) -> Boolean
146
146
) = forAll(kotestGen(), kotestGen(), kotestGen(), kotestGen(), function)
147
147
148
148
/* *
149
- * Use [Fixture] to generate random objects for type parameters and validate the [function] returns true [ forAll] .
149
+ * Use [Fixture] to generate random objects for type parameters and validate the [function] returns true ` forAll` .
150
150
*/
151
151
suspend inline fun <reified A , reified B , reified C , reified D > Fixture.forAll (
152
152
iterations : Int ,
153
153
noinline function : suspend PropertyContext .(a: A , b: B , c: C , d: D ) -> Boolean
154
154
) = forAll(iterations, kotestGen(), kotestGen(), kotestGen(), kotestGen(), function)
155
155
156
156
/* *
157
- * Use [Fixture] to generate random objects for type parameters and validate the [function] returns true [ forAll] .
157
+ * Use [Fixture] to generate random objects for type parameters and validate the [function] returns true ` forAll` .
158
158
*/
159
159
suspend inline fun <reified A , reified B , reified C , reified D > Fixture.forAll (
160
160
config : PropTestConfig ,
161
161
noinline function : suspend PropertyContext .(a: A , b: B , c: C , d: D ) -> Boolean
162
162
) = forAll(config, kotestGen(), kotestGen(), kotestGen(), kotestGen(), function)
163
163
164
164
/* *
165
- * Use [Fixture] to generate random objects for type parameters and validate the [function] returns true [ forAll] .
165
+ * Use [Fixture] to generate random objects for type parameters and validate the [function] returns true ` forAll` .
166
166
*/
167
167
suspend inline fun <reified A , reified B , reified C , reified D > Fixture.forAll (
168
168
iterations : Int ,
@@ -173,30 +173,30 @@ suspend inline fun <reified A, reified B, reified C, reified D> Fixture.forAll(
173
173
// 5 parameters
174
174
175
175
/* *
176
- * Use [Fixture] to generate random objects for type parameters and validate the [function] returns true [ forAll] .
176
+ * Use [Fixture] to generate random objects for type parameters and validate the [function] returns true ` forAll` .
177
177
*/
178
178
suspend inline fun <reified A , reified B , reified C , reified D , reified E > Fixture.forAll (
179
179
noinline function : suspend PropertyContext .(a: A , b: B , c: C , d: D , e: E ) -> Boolean
180
180
) = forAll(kotestGen(), kotestGen(), kotestGen(), kotestGen(), kotestGen(), function)
181
181
182
182
/* *
183
- * Use [Fixture] to generate random objects for type parameters and validate the [function] returns true [ forAll] .
183
+ * Use [Fixture] to generate random objects for type parameters and validate the [function] returns true ` forAll` .
184
184
*/
185
185
suspend inline fun <reified A , reified B , reified C , reified D , reified E > Fixture.forAll (
186
186
iterations : Int ,
187
187
noinline function : suspend PropertyContext .(a: A , b: B , c: C , d: D , e: E ) -> Boolean
188
188
) = forAll(iterations, kotestGen(), kotestGen(), kotestGen(), kotestGen(), kotestGen(), function)
189
189
190
190
/* *
191
- * Use [Fixture] to generate random objects for type parameters and validate the [function] returns true [ forAll] .
191
+ * Use [Fixture] to generate random objects for type parameters and validate the [function] returns true ` forAll` .
192
192
*/
193
193
suspend inline fun <reified A , reified B , reified C , reified D , reified E > Fixture.forAll (
194
194
config : PropTestConfig ,
195
195
noinline function : suspend PropertyContext .(a: A , b: B , c: C , d: D , e: E ) -> Boolean
196
196
) = forAll(config, kotestGen(), kotestGen(), kotestGen(), kotestGen(), kotestGen(), function)
197
197
198
198
/* *
199
- * Use [Fixture] to generate random objects for type parameters and validate the [function] returns true [ forAll] .
199
+ * Use [Fixture] to generate random objects for type parameters and validate the [function] returns true ` forAll` .
200
200
*/
201
201
suspend inline fun <reified A , reified B , reified C , reified D , reified E > Fixture.forAll (
202
202
iterations : Int ,
@@ -207,30 +207,30 @@ suspend inline fun <reified A, reified B, reified C, reified D, reified E> Fixtu
207
207
// 6 parameters
208
208
209
209
/* *
210
- * Use [Fixture] to generate random objects for type parameters and validate the [function] returns true [ forAll] .
210
+ * Use [Fixture] to generate random objects for type parameters and validate the [function] returns true ` forAll` .
211
211
*/
212
212
suspend inline fun <reified A , reified B , reified C , reified D , reified E , reified F > Fixture.forAll (
213
213
noinline function : suspend PropertyContext .(a: A , b: B , c: C , d: D , e: E , f: F ) -> Boolean
214
214
) = forAll(kotestGen(), kotestGen(), kotestGen(), kotestGen(), kotestGen(), kotestGen(), function)
215
215
216
216
/* *
217
- * Use [Fixture] to generate random objects for type parameters and validate the [function] returns true [ forAll] .
217
+ * Use [Fixture] to generate random objects for type parameters and validate the [function] returns true ` forAll` .
218
218
*/
219
219
suspend inline fun <reified A , reified B , reified C , reified D , reified E , reified F > Fixture.forAll (
220
220
iterations : Int ,
221
221
noinline function : suspend PropertyContext .(a: A , b: B , c: C , d: D , e: E , f: F ) -> Boolean
222
222
) = forAll(iterations, kotestGen(), kotestGen(), kotestGen(), kotestGen(), kotestGen(), kotestGen(), function)
223
223
224
224
/* *
225
- * Use [Fixture] to generate random objects for type parameters and validate the [function] returns true [ forAll] .
225
+ * Use [Fixture] to generate random objects for type parameters and validate the [function] returns true ` forAll` .
226
226
*/
227
227
suspend inline fun <reified A , reified B , reified C , reified D , reified E , reified F > Fixture.forAll (
228
228
config : PropTestConfig ,
229
229
noinline function : suspend PropertyContext .(a: A , b: B , c: C , d: D , e: E , f: F ) -> Boolean
230
230
) = forAll(config, kotestGen(), kotestGen(), kotestGen(), kotestGen(), kotestGen(), kotestGen(), function)
231
231
232
232
/* *
233
- * Use [Fixture] to generate random objects for type parameters and validate the [function] returns true [ forAll] .
233
+ * Use [Fixture] to generate random objects for type parameters and validate the [function] returns true ` forAll` .
234
234
*/
235
235
suspend inline fun <reified A , reified B , reified C , reified D , reified E , reified F > Fixture.forAll (
236
236
iterations : Int ,
0 commit comments