-
Notifications
You must be signed in to change notification settings - Fork 383
Expand file tree
/
Copy pathTest_Guard.cs
More file actions
805 lines (675 loc) · 25 KB
/
Test_Guard.cs
File metadata and controls
805 lines (675 loc) · 25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
using System;
using Microsoft.VisualStudio.TestTools.UnitTesting;
namespace CommunityToolkit.Diagnostics.UnitTests;
[TestClass]
public partial class Test_Guard
{
[TestMethod]
public void Test_Guard_IsNull_Ok()
{
Guard.IsNull<object>(null, nameof(Test_Guard_IsNull_Ok));
Guard.IsNull<int>(null, nameof(Test_Guard_IsNull_Ok));
static void Test<T>(T? obj)
{
Guard.IsNull(obj, nameof(Test_Guard_IsNull_Ok));
}
Test<string>(null);
Test<int?>(null);
}
[TestMethod]
[ExpectedException(typeof(ArgumentException))]
public void Test_Guard_IsNull_ClassFail()
{
Guard.IsNull(new object(), nameof(Test_Guard_IsNull_ClassFail));
}
[TestMethod]
[ExpectedException(typeof(ArgumentException))]
public void Test_Guard_IsNull_StructFail()
{
Guard.IsNull(7, nameof(Test_Guard_IsNull_StructFail));
}
[TestMethod]
[ExpectedException(typeof(ArgumentException))]
public void Test_Guard_IsNull_GenericClassFail()
{
static void Test<T>(T? obj)
{
Guard.IsNull(obj, nameof(Test_Guard_IsNull_GenericClassFail));
}
Test("Hi!");
}
[TestMethod]
[ExpectedException(typeof(ArgumentException))]
public void Test_Guard_IsNull_GenericStructFail()
{
static void Test<T>(T? obj)
{
Guard.IsNull(obj, nameof(Test_Guard_IsNull_GenericStructFail));
}
Test(42);
}
[TestMethod]
public void Test_Guard_IsNotNull_Ok()
{
Guard.IsNotNull(new object(), nameof(Test_Guard_IsNotNull_Ok));
Guard.IsNotNull(7, nameof(Test_Guard_IsNotNull_Ok));
static void Test<T>(T? obj)
{
Guard.IsNotNull(obj, nameof(Test_Guard_IsNotNull_Ok));
}
Test("Hi!");
Test(42);
Test<int?>(42);
}
[TestMethod]
[ExpectedException(typeof(ArgumentNullException))]
public void Test_Guard_IsNotNull_ClassFail()
{
Guard.IsNotNull<object>(null, nameof(Test_Guard_IsNotNull_ClassFail));
}
[TestMethod]
[ExpectedException(typeof(ArgumentNullException))]
public void Test_Guard_IsNotNull_StructFail()
{
Guard.IsNotNull<int>(null, nameof(Test_Guard_IsNotNull_StructFail));
}
[TestMethod]
[ExpectedException(typeof(ArgumentNullException))]
public void Test_Guard_IsNotNull_GenericClassFail()
{
static void Test<T>(T? obj)
{
Guard.IsNotNull(obj, nameof(Test_Guard_IsNotNull_GenericClassFail));
}
Test<string>(null);
}
[TestMethod]
[ExpectedException(typeof(ArgumentNullException))]
public void Test_Guard_IsNotNull_GenericStructFail()
{
static void Test<T>(T? obj)
{
Guard.IsNotNull(obj, nameof(Test_Guard_IsNotNull_GenericClassFail));
}
Test<int?>(null);
}
[TestMethod]
public void Test_Guard_IsOfT_Ok()
{
Guard.IsOfType<string>("Hello", nameof(Test_Guard_IsOfT_Ok));
Guard.IsOfType<int>(7, nameof(Test_Guard_IsOfT_Ok));
}
[TestMethod]
[ExpectedException(typeof(ArgumentException))]
public void Test_Guard_IsOfT_Fail()
{
Guard.IsOfType<string>(7, nameof(Test_Guard_IsOfT_Fail));
}
[TestMethod]
public void Test_Guard_IsOfType_Ok()
{
Guard.IsOfType("Hello", typeof(string), nameof(Test_Guard_IsOfType_Ok));
Guard.IsOfType(7, typeof(int), nameof(Test_Guard_IsOfType_Ok));
}
[TestMethod]
[ExpectedException(typeof(ArgumentException))]
public void Test_Guard_IsOfType_Fail()
{
Guard.IsOfType(7, typeof(string), nameof(Test_Guard_IsOfType_Fail));
}
[TestMethod]
public void Test_Guard_IsAssignableToT_Ok()
{
Guard.IsAssignableToType<string>("Hello", nameof(Test_Guard_IsAssignableToT_Ok));
}
[TestMethod]
[ExpectedException(typeof(ArgumentException))]
public void Test_Guard_IsAssignableToT_Fail()
{
Guard.IsAssignableToType<string>(7, nameof(Test_Guard_IsAssignableToT_Fail));
}
[TestMethod]
public void Test_Guard_IsAssignableToType_Ok()
{
Guard.IsAssignableToType("Hello", typeof(string), nameof(Test_Guard_IsAssignableToType_Ok));
}
[TestMethod]
[ExpectedException(typeof(ArgumentException))]
public void Test_Guard_IsAssignableToType_Fail()
{
Guard.IsAssignableToType(7, typeof(string), nameof(Test_Guard_IsAssignableToType_Fail));
}
[TestMethod]
public void Test_Guard_IsNullOrEmpty_Ok()
{
Guard.IsNullOrEmpty(null, nameof(Test_Guard_IsNullOrEmpty_Ok));
Guard.IsNullOrEmpty(string.Empty, nameof(Test_Guard_IsNullOrEmpty_Ok));
}
[TestMethod]
[ExpectedException(typeof(ArgumentException))]
public void Test_Guard_IsNullOrEmpty_Fail()
{
Guard.IsNullOrEmpty("Hello", nameof(Test_Guard_IsNullOrEmpty_Fail));
}
[TestMethod]
public void Test_Guard_IsNotNullOrEmpty_Ok()
{
Guard.IsNotNullOrEmpty("Hello", nameof(Test_Guard_IsNotNullOrEmpty_Ok));
}
[TestMethod]
[ExpectedException(typeof(ArgumentNullException))]
public void Test_Guard_IsNotNullOrEmpty_Null()
{
Guard.IsNotNullOrEmpty(null, nameof(Test_Guard_IsNotNullOrEmpty_Null));
}
[TestMethod]
[ExpectedException(typeof(ArgumentException))]
public void Test_Guard_IsNotNullOrEmpty_Empty()
{
Guard.IsNotNullOrEmpty(string.Empty, nameof(Test_Guard_IsNotNullOrEmpty_Empty));
}
[TestMethod]
public void Test_Guard_IsNotNullOrWhiteSpace_Ok()
{
Guard.IsNotNullOrWhiteSpace("Hello", nameof(Test_Guard_IsNotNullOrWhiteSpace_Ok));
}
[TestMethod]
[ExpectedException(typeof(ArgumentNullException))]
public void Test_Guard_IsNotNullOrWhiteSpace_Null()
{
Guard.IsNotNullOrWhiteSpace(null, nameof(Test_Guard_IsNotNullOrWhiteSpace_Null));
}
[TestMethod]
[ExpectedException(typeof(ArgumentException))]
public void Test_Guard_IsNotNullOrWhiteSpace_Empty()
{
Guard.IsNotNullOrWhiteSpace(" ", nameof(Test_Guard_IsNotNullOrWhiteSpace_Empty));
}
[TestMethod]
public void Test_Guard_IsEqualTo_Ok()
{
Guard.IsEqualTo("Hello", "Hello", nameof(Test_Guard_IsEqualTo_Ok));
}
[TestMethod]
[ExpectedException(typeof(ArgumentException))]
public void Test_Guard_IsEqualTo_Fail()
{
Guard.IsEqualTo("Hello", "World", nameof(Test_Guard_IsEqualTo_Fail));
}
[TestMethod]
public void Test_Guard_IsNotEqualTo_Ok()
{
Guard.IsNotEqualTo("Hello", "World", nameof(Test_Guard_IsNotEqualTo_Ok));
}
[TestMethod]
[ExpectedException(typeof(ArgumentException))]
public void Test_Guard_IsNotEqualTo_Fail()
{
Guard.IsNotEqualTo("Hello", "Hello", nameof(Test_Guard_IsNotEqualTo_Fail));
}
[TestMethod]
public void Test_Guard_IsBitwiseEqualTo_Ok()
{
Guard.IsBitwiseEqualTo(byte.MaxValue, byte.MaxValue, nameof(Test_Guard_IsBitwiseEqualTo_Ok));
Guard.IsBitwiseEqualTo((float)Math.PI, (float)Math.PI, nameof(Test_Guard_IsBitwiseEqualTo_Ok));
Guard.IsBitwiseEqualTo(double.Epsilon, double.Epsilon, nameof(Test_Guard_IsBitwiseEqualTo_Ok));
Guid guid = Guid.NewGuid();
Guard.IsBitwiseEqualTo(guid, guid, nameof(Test_Guard_IsBitwiseEqualTo_Ok));
// tests the >16 byte case where the loop is called
BiggerThanLimit biggerThanLimit = new(0, 3, ulong.MaxValue, ulong.MinValue);
Guard.IsBitwiseEqualTo(biggerThanLimit, biggerThanLimit, nameof(Test_Guard_IsBitwiseEqualTo_Ok));
}
[TestMethod]
[ExpectedException(typeof(ArgumentException))]
public void Test_Guard_IsBitwiseEqualTo_Size8Fail()
{
Guard.IsBitwiseEqualTo(double.PositiveInfinity, double.Epsilon, nameof(Test_Guard_IsBitwiseEqualTo_Size8Fail));
Guard.IsBitwiseEqualTo(DateTime.Now, DateTime.Today, nameof(Test_Guard_IsBitwiseEqualTo_Size8Fail));
}
[TestMethod]
[ExpectedException(typeof(ArgumentException))]
public void Test_Guard_IsBitwiseEqualTo_Size16Fail()
{
Guard.IsBitwiseEqualTo(decimal.MaxValue, decimal.MinusOne, nameof(Test_Guard_IsBitwiseEqualTo_Size16Fail));
Guard.IsBitwiseEqualTo(Guid.NewGuid(), Guid.NewGuid(), nameof(Test_Guard_IsBitwiseEqualTo_Size16Fail));
}
// a >16 byte struct for testing IsBitwiseEqual's pathway for >16 byte types
private struct BiggerThanLimit
{
public BiggerThanLimit(ulong a, ulong b, ulong c, ulong d)
{
this.A = a;
this.B = b;
this.C = c;
this.D = d;
}
public ulong A;
public ulong B;
public ulong C;
public ulong D;
}
[TestMethod]
[ExpectedException(typeof(ArgumentException))]
public void Test_Guard_IsBitwiseEqualTo_SequenceEqualFail()
{
// tests the >16 byte case where the loop is called
BiggerThanLimit biggerThanLimit0 = new(0, 3, ulong.MaxValue, ulong.MinValue);
BiggerThanLimit biggerThanLimit1 = new(long.MaxValue + 1UL, 99, ulong.MaxValue ^ 0xF7UL, ulong.MinValue ^ 5555UL);
Guard.IsBitwiseEqualTo(biggerThanLimit0, biggerThanLimit1, nameof(Test_Guard_IsBitwiseEqualTo_SequenceEqualFail));
}
[TestMethod]
public void Test_Guard_IsReferenceEqualTo_Ok()
{
object? obj = new();
Guard.IsReferenceEqualTo(obj, obj, nameof(Test_Guard_IsReferenceEqualTo_Ok));
}
[TestMethod]
[ExpectedException(typeof(ArgumentException))]
public void Test_Guard_IsReferenceEqualTo_Fail()
{
Guard.IsReferenceEqualTo(new object(), new object(), nameof(Test_Guard_IsReferenceEqualTo_Fail));
}
[TestMethod]
public void Test_Guard_IsReferenceNotEqualTo_Ok()
{
Guard.IsReferenceNotEqualTo(new object(), new object(), nameof(Test_Guard_IsReferenceEqualTo_Fail));
}
[TestMethod]
[ExpectedException(typeof(ArgumentException))]
public void Test_Guard_IsReferenceNotEqualTo_Fail()
{
object? obj = new();
Guard.IsReferenceNotEqualTo(obj, obj, nameof(Test_Guard_IsReferenceEqualTo_Ok));
}
[TestMethod]
public void Test_Guard_IsTrue_Ok()
{
Guard.IsTrue(true, nameof(Test_Guard_IsTrue_Ok));
Guard.IsTrue(true, nameof(Test_Guard_IsTrue_Ok), "Hello world");
}
[TestMethod]
[ExpectedException(typeof(ArgumentException))]
public void Test_Guard_IsTrue_Fail()
{
Guard.IsTrue(false, nameof(Test_Guard_IsTrue_Fail));
}
[TestMethod]
public void Test_Guard_IsTrue_Fail_WithMessage()
{
try
{
Guard.IsTrue(false, nameof(Test_Guard_IsTrue_Fail_WithMessage), "Hello world");
}
catch (ArgumentException e)
{
Assert.IsTrue(e.Message.Contains("\"Hello world\""));
return;
}
// Compiler detects this is unreachable from attribute,
// but we leave the assertion to double check that's valid
Assert.Fail();
}
#if NET6_0_OR_GREATER
[TestMethod]
public void Test_Guard_IsTrue_WithHandler_Ok()
{
Guard.IsTrue(true, nameof(Test_Guard_IsTrue_Ok), $"This is an interpolated message: {DateTime.Now.Year}, {"hello".AsSpan()}");
}
[TestMethod]
public void Test_Guard_IsTrue_WithHandler_Fail()
{
try
{
Guard.IsTrue(false, nameof(Test_Guard_IsTrue_WithHandler_Fail), $"This is an interpolated message: {DateTime.Now.Year}, {"hello".AsSpan()}");
}
catch (ArgumentException e)
{
Assert.IsTrue(e.Message.Contains($"This is an interpolated message: {DateTime.Now.Year}, {"hello".AsSpan()}"));
return;
}
// Compiler detects this is unreachable from attribute,
// but we leave the assertion to double check that's valid
Assert.Fail();
}
#endif
[TestMethod]
public void Test_Guard_IsFalse_Ok()
{
Guard.IsFalse(false, nameof(Test_Guard_IsFalse_Ok));
Guard.IsFalse(false, nameof(Test_Guard_IsFalse_Ok), "Hello world");
}
[TestMethod]
[ExpectedException(typeof(ArgumentException))]
public void Test_Guard_IsFalse_Fail()
{
Guard.IsFalse(true, nameof(Test_Guard_IsFalse_Fail));
}
[TestMethod]
public void Test_Guard_IsFalse_Fail_WithMessage()
{
try
{
Guard.IsFalse(true, nameof(Test_Guard_IsFalse_Fail_WithMessage), "Hello world");
}
catch (ArgumentException e)
{
Assert.IsTrue(e.Message.Contains("\"Hello world\""));
return;
}
Assert.Fail();
}
#if NET6_0_OR_GREATER
[TestMethod]
public void Test_Guard_IsFalse_WithHandler_Ok()
{
Guard.IsFalse(false, nameof(Test_Guard_IsFalse_WithHandler_Ok), $"This is an interpolated message: {DateTime.Now.Year}, {"hello".AsSpan()}");
}
[TestMethod]
public void Test_Guard_IsFalse_WithHandler_Fail()
{
try
{
Guard.IsFalse(true, nameof(Test_Guard_IsFalse_WithHandler_Fail), $"This is an interpolated message: {DateTime.Now.Year}, {"hello".AsSpan()}");
}
catch (ArgumentException e)
{
Assert.IsTrue(e.Message.Contains($"This is an interpolated message: {DateTime.Now.Year}, {"hello".AsSpan()}"));
return;
}
// Compiler detects this is unreachable from attribute,
// but we leave the assertion to double check that's valid
Assert.Fail();
}
#endif
[TestMethod]
public void Test_Guard_IsLessThan_Ok()
{
Guard.IsLessThan(1, 2, nameof(Test_Guard_IsLessThan_Ok));
Guard.IsLessThan(1.2f, 3.14f, nameof(Test_Guard_IsLessThan_Ok));
Guard.IsLessThan(DateTime.Now, DateTime.MaxValue, nameof(Test_Guard_IsLessThan_Ok));
}
[TestMethod]
[ExpectedException(typeof(ArgumentOutOfRangeException))]
public void Test_Guard_IsLessThan_EqualsFalse()
{
Guard.IsLessThan(1, 1, nameof(Test_Guard_IsLessThan_EqualsFalse));
}
[TestMethod]
[ExpectedException(typeof(ArgumentOutOfRangeException))]
public void Test_Guard_IsLessThan_GreaterFalse()
{
Guard.IsLessThan(2, 1, nameof(Test_Guard_IsLessThan_GreaterFalse));
}
[TestMethod]
public void Test_Guard_IsLessThanOrEqualTo_Ok()
{
Guard.IsLessThanOrEqualTo(1, 2, nameof(Test_Guard_IsLessThanOrEqualTo_Ok));
Guard.IsLessThanOrEqualTo(1, 1, nameof(Test_Guard_IsLessThanOrEqualTo_Ok));
Guard.IsLessThanOrEqualTo(0.1f, (float)Math.PI, nameof(Test_Guard_IsLessThanOrEqualTo_Ok));
Guard.IsLessThanOrEqualTo((float)Math.PI, (float)Math.PI, nameof(Test_Guard_IsLessThanOrEqualTo_Ok));
Guard.IsLessThanOrEqualTo(DateTime.Today, DateTime.MaxValue, nameof(Test_Guard_IsLessThanOrEqualTo_Ok));
Guard.IsLessThanOrEqualTo(DateTime.MaxValue, DateTime.MaxValue, nameof(Test_Guard_IsLessThanOrEqualTo_Ok));
}
[TestMethod]
[ExpectedException(typeof(ArgumentOutOfRangeException))]
public void Test_Guard_IsLessThanOrEqualTo_False()
{
Guard.IsLessThanOrEqualTo(2, 1, nameof(Test_Guard_IsLessThanOrEqualTo_False));
}
[TestMethod]
public void Test_Guard_IsGreaterThan_Ok()
{
Guard.IsGreaterThan(2, 1, nameof(Test_Guard_IsGreaterThan_Ok));
Guard.IsGreaterThan(3.14f, 2.1f, nameof(Test_Guard_IsGreaterThan_Ok));
Guard.IsGreaterThan(DateTime.MaxValue, DateTime.Today, nameof(Test_Guard_IsGreaterThan_Ok));
}
[TestMethod]
[ExpectedException(typeof(ArgumentOutOfRangeException))]
public void Test_Guard_IsGreaterThan_EqualsFalse()
{
Guard.IsGreaterThan(1, 1, nameof(Test_Guard_IsGreaterThan_EqualsFalse));
}
[TestMethod]
[ExpectedException(typeof(ArgumentOutOfRangeException))]
public void Test_Guard_IsGreaterThan_LowerFalse()
{
Guard.IsGreaterThan(1, 2, nameof(Test_Guard_IsGreaterThan_LowerFalse));
}
[TestMethod]
public void Test_Guard_IsGreaterThanOrEqualTo_Ok()
{
Guard.IsGreaterThanOrEqualTo(2, 1, nameof(Test_Guard_IsGreaterThanOrEqualTo_Ok));
Guard.IsGreaterThanOrEqualTo(1, 1, nameof(Test_Guard_IsGreaterThanOrEqualTo_Ok));
Guard.IsGreaterThanOrEqualTo((float)Math.PI, 1, nameof(Test_Guard_IsGreaterThanOrEqualTo_Ok));
Guard.IsGreaterThanOrEqualTo((float)Math.PI, (float)Math.PI, nameof(Test_Guard_IsGreaterThanOrEqualTo_Ok));
Guard.IsGreaterThanOrEqualTo(DateTime.MaxValue, DateTime.Today, nameof(Test_Guard_IsGreaterThanOrEqualTo_Ok));
Guard.IsGreaterThanOrEqualTo(DateTime.MaxValue, DateTime.MaxValue, nameof(Test_Guard_IsGreaterThanOrEqualTo_Ok));
}
[TestMethod]
[ExpectedException(typeof(ArgumentOutOfRangeException))]
public void Test_Guard_IsGreaterThanOrEqualTo_False()
{
Guard.IsGreaterThanOrEqualTo(1, 2, nameof(Test_Guard_IsGreaterThanOrEqualTo_False));
}
[TestMethod]
public void Test_Guard_IsInRange_Ok()
{
Guard.IsInRange(1, 0, 4, nameof(Test_Guard_IsInRange_Ok));
Guard.IsInRange(0, 0, 2, nameof(Test_Guard_IsInRange_Ok));
Guard.IsInRange(3.14f, 0, 10, nameof(Test_Guard_IsInRange_Ok));
Guard.IsInRange(1, 0, 3.14f, nameof(Test_Guard_IsInRange_Ok));
Guard.IsInRange(1, -50, 2, nameof(Test_Guard_IsInRange_Ok));
Guard.IsInRange(-44, -44, 0, nameof(Test_Guard_IsInRange_Ok));
Guard.IsInRange(3.14f, -float.Epsilon, 22, nameof(Test_Guard_IsInRange_Ok));
Guard.IsInRange(1, int.MinValue, int.MaxValue, nameof(Test_Guard_IsInRange_Ok));
}
[TestMethod]
[ExpectedException(typeof(ArgumentOutOfRangeException))]
public void Test_Guard_IsInRange_LowerFail()
{
Guard.IsInRange(-3, 0, 4, nameof(Test_Guard_IsInRange_LowerFail));
}
[TestMethod]
[ExpectedException(typeof(ArgumentOutOfRangeException))]
public void Test_Guard_IsInRange_EqualFail()
{
Guard.IsInRange(0, 4, 4, nameof(Test_Guard_IsInRange_EqualFail));
}
[TestMethod]
[ExpectedException(typeof(ArgumentOutOfRangeException))]
public void Test_Guard_IsInRange_HigherFail()
{
Guard.IsInRange(0, 20, 4, nameof(Test_Guard_IsInRange_HigherFail));
}
[TestMethod]
public void Test_Guard_IsNotInRange_Ok()
{
Guard.IsNotInRange(0, 4, 10, nameof(Test_Guard_IsNotInRange_Ok));
Guard.IsNotInRange(-4, 0, 2, nameof(Test_Guard_IsNotInRange_Ok));
Guard.IsNotInRange(12f, 0, 10, nameof(Test_Guard_IsNotInRange_Ok));
Guard.IsNotInRange(-1, 0, 3.14f, nameof(Test_Guard_IsNotInRange_Ok));
}
[TestMethod]
[ExpectedException(typeof(ArgumentOutOfRangeException))]
public void Test_Guard_IsNotInRange_LowerEqualFail()
{
Guard.IsNotInRange(0, 0, 4, nameof(Test_Guard_IsNotInRange_LowerEqualFail));
}
[TestMethod]
[ExpectedException(typeof(ArgumentOutOfRangeException))]
public void Test_Guard_IsNotInRange_InnerFail()
{
Guard.IsNotInRange(2, 0, 4, nameof(Test_Guard_IsNotInRange_InnerFail));
}
[TestMethod]
public void Test_Guard_IsInRangeFor_Ok()
{
Span<int> span = stackalloc int[10];
Guard.IsInRangeFor(0, span, nameof(Test_Guard_IsInRangeFor_Ok));
Guard.IsInRangeFor(4, span, nameof(Test_Guard_IsInRangeFor_Ok));
Guard.IsInRangeFor(9, span, nameof(Test_Guard_IsInRangeFor_Ok));
}
[TestMethod]
[ExpectedException(typeof(ArgumentOutOfRangeException))]
public void Test_Guard_IsInRangeFor_LowerFail()
{
Span<int> span = stackalloc int[10];
Guard.IsInRangeFor(-2, span, nameof(Test_Guard_IsInRangeFor_LowerFail));
}
[TestMethod]
[ExpectedException(typeof(ArgumentOutOfRangeException))]
public void Test_Guard_IsInRangeFor_EqualFail()
{
Span<int> span = stackalloc int[10];
Guard.IsInRangeFor(10, span, nameof(Test_Guard_IsInRangeFor_EqualFail));
}
[TestMethod]
[ExpectedException(typeof(ArgumentOutOfRangeException))]
public void Test_Guard_IsInRangeFor_HigherFail()
{
Span<int> span = stackalloc int[10];
Guard.IsInRangeFor(99, span, nameof(Test_Guard_IsInRangeFor_HigherFail));
}
[TestMethod]
public void Test_Guard_IsNotInRangeFor_Ok()
{
Span<int> span = stackalloc int[10];
Guard.IsNotInRangeFor(-2, span, nameof(Test_Guard_IsNotInRangeFor_Ok));
Guard.IsNotInRangeFor(10, span, nameof(Test_Guard_IsNotInRangeFor_Ok));
Guard.IsNotInRangeFor(2222, span, nameof(Test_Guard_IsNotInRangeFor_Ok));
}
[TestMethod]
[ExpectedException(typeof(ArgumentOutOfRangeException))]
public void Test_Guard_IsNotInRangeFor_LowerFail()
{
Span<int> span = stackalloc int[10];
Guard.IsNotInRangeFor(0, span, nameof(Test_Guard_IsNotInRangeFor_LowerFail));
}
[TestMethod]
[ExpectedException(typeof(ArgumentOutOfRangeException))]
public void Test_Guard_IsNotInRangeFor_MiddleFail()
{
Span<int> span = stackalloc int[10];
Guard.IsNotInRangeFor(6, span, nameof(Test_Guard_IsNotInRangeFor_MiddleFail));
}
[TestMethod]
public void Test_Guard_IsBetween_Ok()
{
Guard.IsBetween(1, 0, 4, nameof(Test_Guard_IsBetween_Ok));
Guard.IsBetween(3.14f, 0, 10, nameof(Test_Guard_IsBetween_Ok));
Guard.IsBetween(1, 0, 3.14, nameof(Test_Guard_IsBetween_Ok));
}
[TestMethod]
[ExpectedException(typeof(ArgumentOutOfRangeException))]
public void Test_Guard_IsBetween_LowerFail()
{
Guard.IsBetween(-1, 0, 4, nameof(Test_Guard_IsBetween_LowerFail));
}
[TestMethod]
[ExpectedException(typeof(ArgumentOutOfRangeException))]
public void Test_Guard_IsBetween_EqualFail()
{
Guard.IsBetween(0, 0, 4, nameof(Test_Guard_IsBetween_EqualFail));
}
[TestMethod]
[ExpectedException(typeof(ArgumentOutOfRangeException))]
public void Test_Guard_IsBetween_HigherFail()
{
Guard.IsBetween(6, 0, 4, nameof(Test_Guard_IsBetween_HigherFail));
}
[TestMethod]
public void Test_Guard_IsNotBetween_Ok()
{
Guard.IsNotBetween(0, 0, 4, nameof(Test_Guard_IsNotBetween_Ok));
Guard.IsNotBetween(10, 0, 10, nameof(Test_Guard_IsNotBetween_Ok));
Guard.IsNotBetween(-5, 0, 3.14, nameof(Test_Guard_IsNotBetween_Ok));
}
[TestMethod]
[ExpectedException(typeof(ArgumentOutOfRangeException))]
public void Test_Guard_IsNotBetween_Fail()
{
Guard.IsNotBetween(1, 0, 4, nameof(Test_Guard_IsNotBetween_Fail));
}
[TestMethod]
public void Test_Guard_IsBetweenOrEqualTo_Ok()
{
Guard.IsBetweenOrEqualTo(1, 0, 4, nameof(Test_Guard_IsBetweenOrEqualTo_Ok));
Guard.IsBetweenOrEqualTo(10, 0, 10, nameof(Test_Guard_IsBetweenOrEqualTo_Ok));
Guard.IsBetweenOrEqualTo(1, 0, 3.14, nameof(Test_Guard_IsBetweenOrEqualTo_Ok));
}
[TestMethod]
[ExpectedException(typeof(ArgumentOutOfRangeException))]
public void Test_Guard_IsBetweenOrEqualTo_LowerFail()
{
Guard.IsBetweenOrEqualTo(-1, 0, 4, nameof(Test_Guard_IsBetweenOrEqualTo_LowerFail));
}
[TestMethod]
[ExpectedException(typeof(ArgumentOutOfRangeException))]
public void Test_Guard_IsBetweenOrEqualTo_HigherFail()
{
Guard.IsBetweenOrEqualTo(6, 0, 4, nameof(Test_Guard_IsBetweenOrEqualTo_HigherFail));
}
[TestMethod]
public void Test_Guard_IsNotBetweenOrEqualTo_Ok()
{
Guard.IsNotBetweenOrEqualTo(6, 0, 4, nameof(Test_Guard_IsNotBetweenOrEqualTo_Ok));
Guard.IsNotBetweenOrEqualTo(-10, 0, 10, nameof(Test_Guard_IsNotBetweenOrEqualTo_Ok));
}
[TestMethod]
[ExpectedException(typeof(ArgumentOutOfRangeException))]
public void Test_Guard_IsNotBetweenOrEqualTo_Fail()
{
Guard.IsNotBetweenOrEqualTo(3, 0, 4, nameof(Test_Guard_IsNotBetweenOrEqualTo_Fail));
}
[TestCategory("Guard")]
[TestMethod]
public void Test_Guard_CallerArgumentExpression_1()
{
string? thisStringShouldNotBeNull = null;
try
{
Guard.IsNotNull(thisStringShouldNotBeNull);
}
catch (ArgumentNullException e)
{
Assert.AreEqual(nameof(thisStringShouldNotBeNull), e.ParamName);
return;
}
Assert.Fail();
}
[TestCategory("Guard")]
[TestMethod]
public void Test_Guard_CallerArgumentExpression_2()
{
int thisIndexIsOutOfRange = 42;
try
{
Guard.IsInRangeFor(thisIndexIsOutOfRange, "Hello world");
}
catch (ArgumentOutOfRangeException e)
{
Assert.AreEqual(nameof(thisIndexIsOutOfRange), e.ParamName);
return;
}
Assert.Fail();
}
[TestCategory("Guard")]
[TestMethod]
public void Test_Guard_CallerArgumentExpression_3()
{
int[] thisArrayShouldNotBeShorterThan10 = Array.Empty<int>();
try
{
Guard.HasSizeGreaterThanOrEqualTo(thisArrayShouldNotBeShorterThan10, 10);
}
catch (ArgumentException e)
{
Assert.AreEqual(nameof(thisArrayShouldNotBeShorterThan10), e.ParamName);
return;
}
Assert.Fail();
}
}