@@ -144,6 +144,66 @@ struct LazyContainersTests {
144
144
145
145
146
146
147
+ // MARK: .initializeNow()
148
+
149
+ // https://github.com/RougeWare/Swift-Lazy-Containers/issues/40
150
+
151
+ @Test
152
+ mutating func initializeNow_Lazy_traditional( ) {
153
+ #expect( false == lazyInitTraditionally. isInitialized)
154
+ lazyInitTraditionally. initializeNow ( )
155
+ #expect( true == lazyInitTraditionally. isInitialized)
156
+ #expect( " lazy B " == lazyInitTraditionally. wrappedValue)
157
+ #expect( true == lazyInitTraditionally. isInitialized)
158
+ #expect( " lazy B " == lazyInitTraditionally. wrappedValue)
159
+ #expect( true == lazyInitTraditionally. isInitialized)
160
+
161
+ lazyInitTraditionally. wrappedValue = " Manual B "
162
+
163
+ #expect( true == lazyInitTraditionally. isInitialized)
164
+ #expect( " Manual B " == lazyInitTraditionally. wrappedValue)
165
+ #expect( true == lazyInitTraditionally. isInitialized)
166
+ #expect( " Manual B " == lazyInitTraditionally. wrappedValue)
167
+ #expect( true == lazyInitTraditionally. isInitialized)
168
+ #expect( " Manual B " == lazyInitTraditionally. wrappedValue)
169
+ #expect( true == lazyInitTraditionally. isInitialized)
170
+ }
171
+
172
+
173
+ @Test
174
+ mutating func initializeNow_Lazy_customInitWithSideEffect( ) {
175
+ #expect( sideEffectA == nil )
176
+ #expect( false == _lazyInitWithPropertyWrapperAndCustomInitializerWithSideEffect. isInitialized)
177
+ #expect( sideEffectA == nil )
178
+ _lazyInitWithPropertyWrapperAndCustomInitializerWithSideEffect. initializeNow ( )
179
+ #expect( true == _lazyInitWithPropertyWrapperAndCustomInitializerWithSideEffect. isInitialized)
180
+ #expect( sideEffectA == " Side effect A1 " )
181
+ #expect( " lAzy " == lazyInitWithPropertyWrapperAndCustomInitializerWithSideEffect)
182
+ #expect( sideEffectA == " Side effect A1 " )
183
+ #expect( true == _lazyInitWithPropertyWrapperAndCustomInitializerWithSideEffect. isInitialized)
184
+ #expect( sideEffectA == " Side effect A1 " )
185
+ #expect( " lAzy " == lazyInitWithPropertyWrapperAndCustomInitializerWithSideEffect)
186
+ #expect( sideEffectA == " Side effect A1 " )
187
+ #expect( true == _lazyInitWithPropertyWrapperAndCustomInitializerWithSideEffect. isInitialized)
188
+ #expect( sideEffectA == " Side effect A1 " )
189
+
190
+ lazyInitWithPropertyWrapperAndCustomInitializerWithSideEffect = " MAnual "
191
+
192
+ #expect( sideEffectA == " Side effect A1 " )
193
+ #expect( true == _lazyInitWithPropertyWrapperAndCustomInitializerWithSideEffect. isInitialized)
194
+ #expect( sideEffectA == " Side effect A1 " )
195
+ #expect( " MAnual " == lazyInitWithPropertyWrapperAndCustomInitializerWithSideEffect)
196
+ #expect( sideEffectA == " Side effect A1 " )
197
+ #expect( true == _lazyInitWithPropertyWrapperAndCustomInitializerWithSideEffect. isInitialized)
198
+ #expect( sideEffectA == " Side effect A1 " )
199
+ #expect( " MAnual " == lazyInitWithPropertyWrapperAndCustomInitializerWithSideEffect)
200
+ #expect( sideEffectA == " Side effect A1 " )
201
+ #expect( true == _lazyInitWithPropertyWrapperAndCustomInitializerWithSideEffect. isInitialized)
202
+ #expect( sideEffectA == " Side effect A1 " )
203
+ }
204
+
205
+
206
+
147
207
// MARK: - `ResettableLazy`
148
208
149
209
@Test
@@ -209,6 +269,73 @@ struct LazyContainersTests {
209
269
#expect( true == resettableLazyInitTraditionally. isInitialized)
210
270
}
211
271
272
+ // MARK: .initializeNow()
273
+
274
+ // https://github.com/RougeWare/Swift-Lazy-Containers/issues/40
275
+
276
+ @Test
277
+ mutating func initializeNow_ResettableLazy_propertyWrapper( ) {
278
+ #expect( false == _resettableLazyInitWithPropertyWrapper. isInitialized)
279
+ _resettableLazyInitWithPropertyWrapper. initializeNow ( )
280
+ #expect( true == _resettableLazyInitWithPropertyWrapper. isInitialized)
281
+ #expect( " lazy C " == resettableLazyInitWithPropertyWrapper)
282
+ #expect( true == _resettableLazyInitWithPropertyWrapper. isInitialized)
283
+ #expect( " lazy C " == resettableLazyInitWithPropertyWrapper)
284
+ #expect( true == _resettableLazyInitWithPropertyWrapper. isInitialized)
285
+
286
+ resettableLazyInitWithPropertyWrapper = " Manual C "
287
+
288
+ #expect( true == _resettableLazyInitWithPropertyWrapper. isInitialized)
289
+ #expect( " Manual C " == resettableLazyInitWithPropertyWrapper)
290
+ #expect( true == _resettableLazyInitWithPropertyWrapper. isInitialized)
291
+ #expect( " Manual C " == resettableLazyInitWithPropertyWrapper)
292
+ #expect( true == _resettableLazyInitWithPropertyWrapper. isInitialized)
293
+ #expect( " Manual C " == resettableLazyInitWithPropertyWrapper)
294
+ #expect( true == _resettableLazyInitWithPropertyWrapper. isInitialized)
295
+
296
+ _resettableLazyInitWithPropertyWrapper. clear ( )
297
+
298
+ #expect( false == _resettableLazyInitWithPropertyWrapper. isInitialized)
299
+ #expect( " lazy C " == resettableLazyInitWithPropertyWrapper)
300
+ #expect( true == _resettableLazyInitWithPropertyWrapper. isInitialized)
301
+ #expect( " lazy C " == resettableLazyInitWithPropertyWrapper)
302
+ #expect( true == _resettableLazyInitWithPropertyWrapper. isInitialized)
303
+ #expect( " lazy C " == resettableLazyInitWithPropertyWrapper)
304
+ #expect( true == _resettableLazyInitWithPropertyWrapper. isInitialized)
305
+ }
306
+
307
+
308
+ @Test
309
+ mutating func initializeNow_ResettableLazy_traditional( ) {
310
+ #expect( false == resettableLazyInitTraditionally. isInitialized)
311
+ resettableLazyInitTraditionally. initializeNow ( )
312
+ #expect( true == resettableLazyInitTraditionally. isInitialized)
313
+ #expect( " lazy D " == resettableLazyInitTraditionally. wrappedValue)
314
+ #expect( true == resettableLazyInitTraditionally. isInitialized)
315
+ #expect( " lazy D " == resettableLazyInitTraditionally. wrappedValue)
316
+ #expect( true == resettableLazyInitTraditionally. isInitialized)
317
+
318
+ resettableLazyInitTraditionally. wrappedValue = " Manual D "
319
+
320
+ #expect( true == resettableLazyInitTraditionally. isInitialized)
321
+ #expect( " Manual D " == resettableLazyInitTraditionally. wrappedValue)
322
+ #expect( true == resettableLazyInitTraditionally. isInitialized)
323
+ #expect( " Manual D " == resettableLazyInitTraditionally. wrappedValue)
324
+ #expect( true == resettableLazyInitTraditionally. isInitialized)
325
+ #expect( " Manual D " == resettableLazyInitTraditionally. wrappedValue)
326
+ #expect( true == resettableLazyInitTraditionally. isInitialized)
327
+
328
+ resettableLazyInitTraditionally. clear ( )
329
+
330
+ #expect( false == resettableLazyInitTraditionally. isInitialized)
331
+ #expect( " lazy D " == resettableLazyInitTraditionally. wrappedValue)
332
+ #expect( true == resettableLazyInitTraditionally. isInitialized)
333
+ #expect( " lazy D " == resettableLazyInitTraditionally. wrappedValue)
334
+ #expect( true == resettableLazyInitTraditionally. isInitialized)
335
+ #expect( " lazy D " == resettableLazyInitTraditionally. wrappedValue)
336
+ #expect( true == resettableLazyInitTraditionally. isInitialized)
337
+ }
338
+
212
339
213
340
214
341
// MARK: - `FuctionalLazy`
@@ -255,4 +382,52 @@ struct LazyContainersTests {
255
382
#expect( " Manual F " == functionalLazyInitTraditionally. wrappedValue)
256
383
#expect( true == functionalLazyInitTraditionally. isInitialized)
257
384
}
385
+
386
+
387
+ // MARK: .initializeNow()
388
+
389
+ // https://github.com/RougeWare/Swift-Lazy-Containers/issues/40
390
+
391
+ @Test
392
+ mutating func initializeNow_FunctionalLazy_propertyWrapper( ) {
393
+ #expect( false == _functionalLazyInitWithPropertyWrapper. isInitialized)
394
+ _functionalLazyInitWithPropertyWrapper. initializeNow ( )
395
+ #expect( true == _functionalLazyInitWithPropertyWrapper. isInitialized)
396
+ #expect( " lazy E " == functionalLazyInitWithPropertyWrapper)
397
+ #expect( true == _functionalLazyInitWithPropertyWrapper. isInitialized)
398
+ #expect( " lazy E " == functionalLazyInitWithPropertyWrapper)
399
+ #expect( true == _functionalLazyInitWithPropertyWrapper. isInitialized)
400
+
401
+ functionalLazyInitWithPropertyWrapper = " Manual E "
402
+
403
+ #expect( true == _functionalLazyInitWithPropertyWrapper. isInitialized)
404
+ #expect( " Manual E " == functionalLazyInitWithPropertyWrapper)
405
+ #expect( true == _functionalLazyInitWithPropertyWrapper. isInitialized)
406
+ #expect( " Manual E " == functionalLazyInitWithPropertyWrapper)
407
+ #expect( true == _functionalLazyInitWithPropertyWrapper. isInitialized)
408
+ #expect( " Manual E " == functionalLazyInitWithPropertyWrapper)
409
+ #expect( true == _functionalLazyInitWithPropertyWrapper. isInitialized)
410
+ }
411
+
412
+
413
+ @Test
414
+ mutating func initializeNow_FunctionalLazy_traditional( ) {
415
+ #expect( false == functionalLazyInitTraditionally. isInitialized)
416
+ functionalLazyInitTraditionally. initializeNow ( )
417
+ #expect( true == functionalLazyInitTraditionally. isInitialized)
418
+ #expect( " lazy F " == functionalLazyInitTraditionally. wrappedValue)
419
+ #expect( true == functionalLazyInitTraditionally. isInitialized)
420
+ #expect( " lazy F " == functionalLazyInitTraditionally. wrappedValue)
421
+ #expect( true == functionalLazyInitTraditionally. isInitialized)
422
+
423
+ functionalLazyInitTraditionally. wrappedValue = " Manual F "
424
+
425
+ #expect( true == functionalLazyInitTraditionally. isInitialized)
426
+ #expect( " Manual F " == functionalLazyInitTraditionally. wrappedValue)
427
+ #expect( true == functionalLazyInitTraditionally. isInitialized)
428
+ #expect( " Manual F " == functionalLazyInitTraditionally. wrappedValue)
429
+ #expect( true == functionalLazyInitTraditionally. isInitialized)
430
+ #expect( " Manual F " == functionalLazyInitTraditionally. wrappedValue)
431
+ #expect( true == functionalLazyInitTraditionally. isInitialized)
432
+ }
258
433
}
0 commit comments