@@ -104,8 +104,8 @@ public void OptionalSomeShouldProduceExpectedResult()
104
104
Assert . Equal ( "abc" , text ) ;
105
105
}
106
106
107
- [ Fact ( DisplayName = "Optional implicit operator should produce the expected result." ) ]
108
- public void OptionalImplicitOperatorShouldProduceExpectedResult ( )
107
+ [ Fact ( DisplayName = "Optional implicit operator should produce the expected some result." ) ]
108
+ public void OptionalImplicitOperatorShouldProduceExpectedSomeResult ( )
109
109
{
110
110
// Given / When
111
111
Optional < int > number = 123 ;
@@ -121,6 +121,18 @@ public void OptionalImplicitOperatorShouldProduceExpectedResult()
121
121
Assert . Equal ( "abc" , text ) ;
122
122
}
123
123
124
+ [ Fact ( DisplayName = "Optional implicit operator should produce the expected none result." ) ]
125
+ public void OptionalImplicitOperatorShouldProduceExpectedNoneResult ( )
126
+ {
127
+ // Given / When
128
+ const string ? value = default ;
129
+ Optional < string > optional = value ;
130
+
131
+ // Then
132
+ Assert . False ( optional . HasValue ) ;
133
+ Assert . IsType < None < string > > ( optional ) ;
134
+ }
135
+
124
136
[ Fact ( DisplayName = "Optional Some explicit operator should produce the expected result." ) ]
125
137
public void OptionalSomeExplicitOperatorShouldProduceExpectedResult ( )
126
138
{
@@ -210,10 +222,10 @@ public void OptionalSomeGetHashCodeShouldProduceExpectedResult()
210
222
{
211
223
// Given
212
224
const int expected = 123 ;
213
- Optional < int > value = 123 ;
225
+ Optional < int > optional = 123 ;
214
226
215
227
// When
216
- int actual = value . GetHashCode ( ) ;
228
+ int actual = optional . GetHashCode ( ) ;
217
229
218
230
// Then
219
231
Assert . Equal ( expected , actual ) ;
@@ -224,10 +236,10 @@ public void OptionalNoneGetHashCodeShouldProduceExpectedResult()
224
236
{
225
237
// Given
226
238
const int expected = default ;
227
- Optional < int > value = Optional < int > . None ;
239
+ Optional < int > optional = Optional < int > . None ;
228
240
229
241
// When
230
- int actual = value . GetHashCode ( ) ;
242
+ int actual = optional . GetHashCode ( ) ;
231
243
232
244
// Then
233
245
Assert . Equal ( expected , actual ) ;
@@ -334,13 +346,10 @@ public void OptionalSomeMatchShouldExecuteSomeAction()
334
346
{
335
347
// Given
336
348
bool someCalled = false ;
337
- Optional < int > number = 123 ;
349
+ Optional < int > optional = 123 ;
338
350
339
351
// When
340
- number . Match (
341
- some : _ => { someCalled = true ; } ,
342
- none : ( ) => { }
343
- ) ;
352
+ optional . Match ( some : _ => { someCalled = true ; } ) ;
344
353
345
354
// Then
346
355
Assert . True ( someCalled ) ;
@@ -351,13 +360,10 @@ public void OptionalNoneMatchShouldExecuteNoneAction()
351
360
{
352
361
// Given
353
362
bool noneCalled = false ;
354
- Optional < int > number = Optional < int > . None ;
363
+ Optional < int > optional = Optional < int > . None ;
355
364
356
365
// When
357
- number . Match (
358
- some : _ => { } ,
359
- none : ( ) => { noneCalled = true ; }
360
- ) ;
366
+ optional . Match ( none : ( ) => { noneCalled = true ; } ) ;
361
367
362
368
// Then
363
369
Assert . True ( noneCalled ) ;
@@ -368,10 +374,10 @@ public void OptionalSomeMatchShouldProduceExpectedResult()
368
374
{
369
375
// Given
370
376
const int expected = 9 ;
371
- Optional < int > number = 3 ;
377
+ Optional < int > optional = 3 ;
372
378
373
379
// When
374
- int actual = number . Match (
380
+ int actual = optional . Match (
375
381
some : value => value * value ,
376
382
none : ( ) => 0
377
383
) ;
@@ -385,10 +391,10 @@ public void OptionalNoneMatchShouldProduceExpectedResult()
385
391
{
386
392
// Given
387
393
const int expected = 0 ;
388
- Optional < int > number = Optional < int > . None ;
394
+ Optional < int > optional = Optional < int > . None ;
389
395
390
396
// When
391
- int actual = number . Match (
397
+ int actual = optional . Match (
392
398
some : value => value * value ,
393
399
none : ( ) => 0
394
400
) ;
@@ -402,10 +408,10 @@ public void OptionalSomeSelectShouldProduceExpectedResult()
402
408
{
403
409
// Given
404
410
const int expected = 9 ;
405
- Optional < int > number = 3 ;
411
+ Optional < int > optional = 3 ;
406
412
407
413
// When
408
- Optional < int > actual = number . Select ( value => value * value ) ;
414
+ Optional < int > actual = optional . Select ( value => value * value ) ;
409
415
410
416
// Then
411
417
Assert . Equal ( expected , actual ) ;
@@ -415,10 +421,10 @@ public void OptionalSomeSelectShouldProduceExpectedResult()
415
421
public void OptionalNoneSelectShouldProduceExpectedResult ( )
416
422
{
417
423
// Given
418
- Optional < int > number = Optional < int > . None ;
424
+ Optional < int > optional = Optional < int > . None ;
419
425
420
426
// When
421
- Optional < int > actual = number . Select ( value => value * value ) ;
427
+ Optional < int > actual = optional . Select ( value => value * value ) ;
422
428
423
429
// Then
424
430
Assert . Equal ( Optional < int > . None , actual ) ;
@@ -429,10 +435,10 @@ public void OptionalSomeSelectManyShouldProduceExpectedResult()
429
435
{
430
436
// Given
431
437
const int expected = 9 ;
432
- Optional < int > number = 3 ;
438
+ Optional < int > optional = 3 ;
433
439
434
440
// When
435
- Optional < int > actual = number . SelectMany < int > ( value => value * value ) ;
441
+ Optional < int > actual = optional . SelectMany < int > ( value => value * value ) ;
436
442
437
443
// Then
438
444
Assert . Equal ( expected , actual ) ;
@@ -442,10 +448,10 @@ public void OptionalSomeSelectManyShouldProduceExpectedResult()
442
448
public void OptionalNoneSelectManyShouldProduceExpectedResult ( )
443
449
{
444
450
// Given
445
- Optional < int > number = Optional < int > . None ;
451
+ Optional < int > optional = Optional < int > . None ;
446
452
447
453
// When
448
- Optional < int > actual = number . SelectMany < int > ( value => value * value ) ;
454
+ Optional < int > actual = optional . SelectMany < int > ( value => value * value ) ;
449
455
450
456
// Then
451
457
Assert . Equal ( Optional < int > . None , actual ) ;
0 commit comments