This repository has been archived by the owner on Dec 27, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMainFixture.cs
835 lines (655 loc) Β· 23.7 KB
/
MainFixture.cs
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
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
ο»Ώnamespace Scellecs.Collections.TestSuite {
using NUnit.Framework;
using Collections;
public class MainFixture {
#region IntHashSet
[Test]
[Category("IntHashSet")]
public void IntHashSet_Simple_Ctor() {
Assert.DoesNotThrow(() => {
var ihs = new IntHashSet();
});
}
[Test]
[Category("IntHashSet")]
[TestCase(30)]
public void IntHashSet_Simple_Ctor_With_Capacity(int capacity) {
var ihs = new IntHashSet(capacity);
Assert.AreEqual(64, ihs.capacity);
}
#endregion
#region IntHashSetExtensions
[Test]
[Category("IntHashSetExtensions")]
public void IntHashSet_Add() {
var ihs = new IntHashSet();
ihs.Add(2);
ihs.Add(4);
ihs.Add(6);
ihs.Add(8);
Assert.AreEqual(4, ihs.length);
}
[Test]
[TestCase()]
[Category("IntHashSetExtensions")]
public void IntHashSet_Remove() {
var ihs = new IntHashSet(32);
ihs.Add(2);
ihs.Add(4);
ihs.Add(6);
ihs.Add(8);
ihs.Remove(8);
ihs.Remove(6);
ihs.Remove(5); //IntHashSet does not contain '5', so it should have the same length.
Assert.True(ihs.length == 2);
}
[Test] //TODO: Fix test
[Category("IntHashSetExtensions")]
public void IntHashSet_CopyTo() {
var ihs = new IntHashSet(32);
var arr = new int[32];
Assert.DoesNotThrow(() => ihs.CopyTo(arr));
}
[Test]
[Category("IntHashSetExtensions")]
public void IntHashSet_Has() {
var ihs = new IntHashSet(32);
ihs.Add(2);
Assert.True(ihs.Has(2));
}
[Test]
[Category("IntHashSetExtensions")]
public void IntHashSet_Clear() {
var ihs = new IntHashSet(32);
ihs.Add(2);
ihs.Add(6);
ihs.Add(4);
ihs.Add(8);
ihs.Clear();
Assert.True(ihs.length == 0);
}
#endregion
#region IntHashMap
[Test]
[Category("IntHashMap")]
public void IntHashMap_Simple_Ctor() {
Assert.DoesNotThrow(() => {
var ihm = new IntHashMap<int>();
});
}
[Test]
[Category("IntHashMap")]
public void IntHashMap_Simple_Ctor_With_Capacity() {
var ihm = new IntHashMap<int>(30);
Assert.AreEqual(64, ihm.capacity);
}
#endregion
#region IntHashMapExtensions
[Test]
[Category("IntHashMapExtensions")]
[TestCase(1, 2)]
public void IntHashMap_Add<T>(T value, int key) {
var ihm = new IntHashMap<T>();
int slotIndex;
ihm.Add(key, value, out slotIndex);
Assert.AreEqual(1, ihm.length); //Probably we need to check something like "slotIndex >= 1"
}
[Test]
[Category("IntHashMapExtensions")]
[TestCase(1, 2)] //TODO: Fix test
public void IntHashMap_Set<T>(T value, int key) {
var ihm = new IntHashMap<T>();
int slotIndex;
ihm.Set(key, value, out slotIndex);
Assert.AreEqual(value, ihm.data[slotIndex / 2]);
}
[Test]
[Category("IntHashMapExtensions")]
[TestCase(1, 2)]
public void IntHashMap_Remove<T>(T value, int key) {
var ihm = new IntHashMap<T>();
int slotIndex;
T lastValue;
ihm.Add(key, value, out slotIndex);
ihm.Remove(key, out lastValue);
Assert.True(value.Equals(lastValue) && ihm.length == 0);
}
[Test]
[Category("IntHashMapExtensions")]
[TestCase(1, 2)]
public void IntHashMap_Has<T>(T value, int key) {
var ihm = new IntHashMap<T>();
int slotIndex;
ihm.Add(key, value, out slotIndex);
Assert.True(ihm.Has(key));
}
[Test]
[Category("IntHashMapExtensions")]
[TestCase(1, 2)]
public void IntHashMap_TryGetValue<T>(T value, int key) {
var ihm = new IntHashMap<T>();
int slotIndex;
T tempValue;
ihm.Add(key, value, out slotIndex);
var result = ihm.TryGetValue(key, out tempValue);
Assert.True(result && value.Equals(tempValue));
}
[Test]
[Category("IntHashMapExtensions")]
[TestCase(1, 2)]
public void IntHashMap_GetValueByKey<T>(T value, int key) {
var ihm = new IntHashMap<T>();
int slotIndex;
T tempValue;
ihm.Add(key, value, out slotIndex);
tempValue = ihm.GetValueByKey(key);
Assert.AreEqual(value, tempValue);
}
[Test]
[Category("IntHashMapExtensions")]
[TestCase(1, 2)]
public void IntHashMap_GetValueByIndex<T>(T value, int key) {
var ihm = new IntHashMap<T>();
int slotIndex;
T tempValue;
ihm.Add(key, value, out slotIndex);
tempValue = ihm.GetValueByIndex(slotIndex);
Assert.AreEqual(value, tempValue);
}
[Test]
[Category("IntHashMapExtensions")]
[TestCase(1, 2)] //TODO: Fix source
public void IntHashMap_GetKeyByIndex<T>(T value, int key) {
var ihm = new IntHashMap<T>();
int slotIndex, outKey;
ihm.Add(key, value, out slotIndex);
outKey = ihm.GetKeyByIndex(slotIndex);
Assert.AreEqual(key, outKey);
}
[Test]
[Category("IntHashMapExtensions")]
[TestCase(1, 2)]
public void IntHashMap_TryGetIndex<T>(T value, int key) {
var ihm = new IntHashMap<T>();
int slotIndex;
int tempIndex;
ihm.Add(key, value, out slotIndex);
tempIndex = ihm.TryGetIndex(key);
Assert.AreEqual(slotIndex, tempIndex);
}
[Test]
[Category("IntHashMapExtensions")]
[TestCase(1, 2)]
public void IntHashMap_CopyTo<T>(T value, int key) {
var ihm = new IntHashMap<T>();
int slotIndex;
var arr = new T[ihm.capacity];
ihm.Add(key, value, out slotIndex);
ihm.CopyTo(arr);
Assert.AreEqual(ihm.data, arr);
}
[Test]
[Category("IntHashMapExtensions")]
[TestCase(1, 2)]
public void IntHashMap_Clear<T>(T value, int key) {
var ihm = new IntHashMap<T>();
int slotIndex;
ihm.Add(key, value, out slotIndex);
ihm.Clear();
Assert.AreEqual(0, ihm.length);
}
#endregion
#region UnsafeIntHashMap
[Test]
[Category("UnsafeIntHashMap")]
[TestCase(1)]
public void UnsafeIntHashMap_Ctor<T>(T value) where T : unmanaged {
Assert.DoesNotThrow(() => {
var uihm = new UnsafeIntHashMap<T>();
});
}
[Test]
[Category("UnsafeIntHashMap")]
[TestCase(1, 30)]
public void UnsafeIntHashMap_Ctor_With_Capacity<T>(T value, int capacity) where T : unmanaged {
var uihm = new UnsafeIntHashMap<T>(capacity);
Assert.AreEqual(64, uihm.capacity);
}
#endregion
#region UnsafeIntHashMapExtensions
[Test]
[Category("UnsafeIntHashMapExtensions")]
[TestCase(1, 2)]
public void UnsafeIntHashMap_Add<T>(int key, T value) where T : unmanaged {
int outIndex;
var uihm = new UnsafeIntHashMap<T>();
uihm.Add(key, value, out outIndex);
Assert.AreEqual(1, uihm.length);
}
[Test]
[Category("UnsafeIntHashMapExtensions")]
[TestCase(1, 2)]
public void UnsafeIntHashMap_Remove<T>(int key, T value) where T : unmanaged {
int outIndex;
T lastValue;
var uihm = new UnsafeIntHashMap<T>();
uihm.Add(key, value, out outIndex);
uihm.Remove(key, out lastValue);
Assert.True(value.Equals(lastValue) && uihm.length == 0);
}
[Test]
[Category("UnsafeIntHashMapExtensions")]
[TestCase(1, 2)]
public void UnsafeIntHashMap_TryGetValue<T>(int key, T value) where T : unmanaged {
int outIndex;
T lastValue;
var uihm = new UnsafeIntHashMap<T>();
uihm.Add(key, value, out outIndex);
uihm.TryGetValue(key, out lastValue);
Assert.AreEqual(value, lastValue);
}
[Test]
[Category("UnsafeIntHashMapExtensions")]
[TestCase(1, 2)]
public void UnsafeIntHashMap_GetValueByKey<T>(int key, T value) where T : unmanaged {
int outIndex;
T outValue;
var uihm = new UnsafeIntHashMap<T>();
uihm.Add(key, value, out outIndex);
outValue = uihm.GetValueByKey(key);
Assert.AreEqual(value, outValue);
}
[Test]
[Category("UnsafeIntHashMapExtensions")]
[TestCase(1, 2)]
public void UnsafeIntHashMap_GetValueByIndex<T>(int key, T value) where T : unmanaged {
int outIndex;
T outValue;
var uihm = new UnsafeIntHashMap<T>();
uihm.Add(key, value, out outIndex);
outValue = uihm.GetValueByIndex(outIndex);
Assert.AreEqual(value, outValue);
}
[Test]
[Category("UnsafeIntHashMapExtensions")]
[TestCase(1, 2)]
public void UnsafeIntHashMap_GetKeyByIndex<T>(int key, T value) where T : unmanaged {
int outIndex, outKey;
var uihm = new UnsafeIntHashMap<T>();
uihm.Add(key, value, out outIndex);
outKey = uihm.GetKeyByIndex(outIndex);
Assert.AreEqual(key, outKey);
}
[Test]
[Category("UnsafeIntHashMapExtensions")]
[TestCase(1, 2)]
public void UnsafeIntHashMap_TryGetIndex<T>(int key, T value) where T : unmanaged {
int outIndex, newIndex;
var uihm = new UnsafeIntHashMap<T>();
uihm.Add(key, value, out outIndex);
newIndex = uihm.TryGetIndex(key);
Assert.AreEqual(outIndex, newIndex);
}
[Test]
[Category("UnsafeIntHashMapExtensions")]
[TestCase(1, 2, 1, 2)]
public void UnsafeIntHashMap_Clear<T>(int key1, int key2, T value1, T value2) where T : unmanaged {
int outIndex1, outIndex2;
var uihm = new UnsafeIntHashMap<T>();
uihm.Add(key1, value1, out outIndex1);
uihm.Add(key2, value2, out outIndex2);
uihm.Clear();
Assert.AreEqual(0, uihm.length);
}
#endregion
#region IntStack
[Test]
[Category("IntStack")]
public void IntStack_Ctor() {
Assert.DoesNotThrow(() => {
var stack = new IntStack();
});
}
#endregion
#region IntStackExtensions
[Test]
[Category("IntStackExtensions")]
[TestCase(3,4)]
public void IntStack_Push(int value1, int value2) {
var stack = new IntStack();
stack.Push(value1);
stack.Push(value2);
Assert.AreEqual(2, stack.length);
}
[Test]
[Category("IntStackExtensions")]
[TestCase(3,4)]
public void IntStack_Pop(int value1, int value2) {
var stack = new IntStack();
stack.Push(value1);
stack.Push(value2);
var actual = stack.Pop();
Assert.AreEqual(4, actual);
}
[Test]
[Category("IntStackExtensions")]
[TestCase(3,4)]
public void IntStack_Clear(int value1, int value2) {
var stack = new IntStack();
stack.Push(value1);
stack.Push(value2);
stack.Clear();
Assert.AreEqual(0, stack.length);
}
#endregion
#region FastList
[Test]
[Category("FastList")]
[TestCase(typeof(int))]
public void FastList_Ctor<T>(T type) {
Assert.DoesNotThrow(() => {
var fl = new FastList<T>();
});
}
[Test]
[Category("FastList")]
[TestCase(typeof(int), 30)]
public void FastList_Ctor_With_Capacity<T>(T type, int capacity) {
var fl = new FastList<T>(capacity);
Assert.AreEqual(63, fl.capacity);
}
[Test]
[Category("FastList")]
[TestCase(typeof(int), 30)]
public void FastList_Ctor_With_Other<T>(T type, int capacity) {
var fl1 = new FastList<T>(capacity);
var fl2 = new FastList<T>(fl1);
Assert.AreEqual(fl1.capacity, fl2.capacity);
}
#endregion
#region FastListExtensions
[Test]
[Category("FastListExtensions")]
[TestCase(1)]
public void FastList_Add<T>(T value) {
var fl1 = new FastList<T>();
fl1.Add();
Assert.AreEqual(1, fl1.length);
}
[Test]
[Category("FastListExtensions")]
[TestCase(1)]
public void FastList_Add_With_Value<T>(T value) {
var fl1 = new FastList<T>();
fl1.Add(value);
Assert.AreEqual(1, fl1.length);
}
[Test]
[Category("FastListExtensions")]
[TestCase(1,2)]
public void FastList_Add_List_Range<T>(T value1, T value2) {
var fl1 = new FastList<T>();
var fl2 = new FastList<T>();
fl1.Add(value1);
fl1.Add(value2);
fl2.AddListRange(fl1);
Assert.AreEqual(2, fl2.length);
}
[Test]
[Category("FastListExtensions")]
[TestCase(1,2)]
public void FastList_Swap<T>(T value1, T value2) {
var fl1 = new FastList<T>(); //TODO: Check source logic (is it a swap?)
fl1.Add(value1);
fl1.Add(value2);
fl1.Swap(0, 1);
Assert.True(value1.Equals(fl1.data[1]) && value2.Equals(fl1.data[0]), fl1.data[0].ToString());
}
[Test]
[Category("FastListExtensions")]
[TestCase(1,2)]
public void FastList_Index_Of<T>(T value1, T value2) {
var fl1 = new FastList<T>();
fl1.Add(value1);
var index = fl1.IndexOf(value1);
Assert.AreEqual(0,index);
}
[Test]
[Category("FastListExtensions")]
[TestCase(1,2)]
public void FastList_Remove<T>(T value1, T value2) {
var fl1 = new FastList<T>();
fl1.Add(value1);
fl1.Remove(value1);
Assert.AreEqual(0, fl1.length);
}
[Test]
[Category("FastListExtensions")]
[TestCase(1,2)]
public void FastList_Remove_Swap<T>(T value1, T value2) {
var fl1 = new FastList<T>(); //TODO: check if it's true (Assert logic)
fl1.Add(value1);
fl1.Add(value2);
fl1.RemoveSwap(value1, out var resultSwap);
Assert.AreEqual(1, resultSwap.oldIndex);
}
[Test]
[Category("FastListExtensions")]
[TestCase(1,2)]
public void FastList_Remove_At<T>(T value1, T value2) {
var fl1 = new FastList<T>();
fl1.Add(value1);
fl1.Add(value2);
fl1.RemoveAt(1);
Assert.AreEqual(0, fl1.data[1]);
}
[Test]
[Category("FastListExtensions")]
[TestCase(1,2)]
public void FastList_Clear<T>(T value1, T value2) {
var fl1 = new FastList<T>();
fl1.Add(value1);
fl1.Add(value2);
fl1.Clear();
Assert.AreEqual(0, fl1.length);
}
[Test]
[Category("FastListExtensions")]
[TestCase(2,1)]
public void FastList_Sort<T>(T value1, T value2) {
var fl1 = new FastList<T>();
fl1.Add(value1);
fl1.Add(value2);
fl1.Sort();
Assert.AreEqual(1, fl1.data[0]);
}
[Test]
[Category("FastListExtensions")]
[TestCase(2,1)]
public void FastList_Sort_By_Index_And_Len<T>(T value1, T value2) {
var fl1 = new FastList<T>();
fl1.Add(value1);
fl1.Add(value2);
fl1.Sort(0, 2);
Assert.AreEqual(1, fl1.data[0]);
}
[Test]
[Category("FastListExtensions")]
[TestCase(1,2)]
public void FastList_ToArray<T>(T value1, T value2) {
var fl1 = new FastList<T>(); //TODO: fix
fl1.Add(value1);
fl1.Add(value2);
var arr = fl1.ToArray();
Assert.AreEqual(fl1.capacity - (fl1.capacity - fl1.length), arr.Length);
}
#endregion
#region IntFastList
[Test]
[Category("IntFastList")]
public void IntFastList_Ctor() {
Assert.DoesNotThrow(() => {
var ifl = new IntFastList();
});
}
[Test]
[Category("IntFastList")]
[TestCase(30)]
public void IntFastList_Ctor_With_Capacity(int capacity) {
var ifl = new IntFastList(capacity);
Assert.AreEqual(63, ifl.capacity);
}
[Test]
[Category("IntFastList")]
public void IntFastList_Other() {
var ifl1 = new IntFastList();
ifl1.Add(1);
ifl1.Add(2);
var ifl2 = new IntFastList(ifl1);
Assert.AreEqual(ifl1, ifl2);
}
#endregion
#region IntFastListExtensions
[Test]
[Category("IntFastListExtensions")]
public void IntFastList_Add() {
var ifl = new IntFastList();
ifl.Add();
ifl.Add();
Assert.AreEqual(2, ifl.length);
}
[Test]
[Category("IntFastListExtensions")]
[TestCase(1,2)]
public void IntFastList_Add_Value(int val1, int val2) {
var ifl = new IntFastList();
ifl.Add(val1);
ifl.Add(val2);
Assert.True(ifl.length == 2 && ifl.data[1] == val2);
}
[Test]
[Category("IntFastListExtensions")]
[TestCase(1)]
public void IntFastList_Get(int val1) {
var ifl = new IntFastList();
ifl.Add(val1);
var val = ifl.Get(0);
Assert.AreEqual(val1, val);
}
[Test]
[Category("IntFastListExtensions")]
[TestCase(1, 2)]
public void IntFastList_Set(int val1, int val2) {
var ifl = new IntFastList();
ifl.Add(val1);
ifl.Set(0, val2);
Assert.AreEqual(val2, ifl.data[0]);
}
[Test]
[Category("IntFastListExtensions")]
[TestCase(1, 2)]
public void IntFastList_Add_List_Range(int val1, int val2) {
var ifl1 = new IntFastList();
ifl1.Add(val1);
ifl1.Add(val2);
var ifl2 = new IntFastList();
ifl2.AddListRange(ifl1);
Assert.AreEqual(2, ifl2.length);
}
[Test]
[Category("IntFastListExtensions")]
[TestCase(1, 2)]
public void IntFastList_Swap(int val1, int val2) {
var ifl1 = new IntFastList(); //TODO: fix
Assert.Fail();
}
[Test]
[Category("IntFastListExtensions")]
[TestCase(1, 2)]
public void IntFastList_Index_Of(int val1, int val2) {
var ifl = new IntFastList();
ifl.Add(val1);
ifl.Add(val2);
var index = ifl.IndexOf(val2);
Assert.AreEqual(1, index);
}
[Test]
[Category("IntFastListExtensions")]
[TestCase(1, 2)]
public void IntFastList_Remove(int val1, int val2) {
var ifl = new IntFastList();
ifl.Add(val1);
ifl.Add(val2);
ifl.Remove(val2);
Assert.AreEqual(1, ifl.length);
}
[Test]
[Category("IntFastListExtensions")]
[TestCase(1, 2)]
public void IntFastList_RemoveSwap(int val1, int val2) {
var ifl = new IntFastList();
ifl.Add(val1);
ifl.Add(val2);
var result = new IntFastList.ResultSwap();
ifl.RemoveSwap(val1, out result);
Assert.AreEqual(2, ifl.data[0]);
}
[Test]
[Category("IntFastListExtensions")]
[TestCase(1, 2)]
public void IntFastList_Clear(int val1, int val2) {
var ifl = new IntFastList();
ifl.Add(val1);
ifl.Add(val2);
ifl.Clear();
Assert.AreEqual(0, ifl.length);
}
[Test]
[Category("FastListExtensions")]
[TestCase(2,1)]
public void IntFastList_Sort(int value1, int value2) {
var fl1 = new IntFastList();
fl1.Add(value1);
fl1.Add(value2);
fl1.Sort();
Assert.AreEqual(1, fl1.data[0]);
}
[Test]
[Category("FastListExtensions")]
[TestCase(2,1)]
public void IntFastList_Sort_By_Index_And_Len(int value1, int value2) {
var fl1 = new IntFastList();
fl1.Add(value1);
fl1.Add(value2);
fl1.Sort(0, 2);
Assert.AreEqual(1, fl1.data[0]);
}
[Test]
[Category("IntFastListExtensions")]
[TestCase(1,2)]
public void IntFastList_To_Array(int value1, int value2) {
var fl1 = new IntFastList();
fl1.Add(value1);
fl1.Add(value2);
var arr = fl1.ToArray();
Assert.AreEqual(fl1.capacity - (fl1.capacity - fl1.length), arr.Length);
}
#endregion
#region HashHelpers
[Test]
[Category("HashExtensions")]
[TestCase(120)]
public void Hash_Expand_Capacity(int oldSize) {
var newCapacity = HashHelpers.ExpandCapacity(oldSize);
Assert.AreEqual(255, newCapacity);
}
[Test]
[Category("HashExtensions")]
[TestCase(30)]
public void Hash_Get_Capacity(int min) {
var capacity = HashHelpers.GetCapacity(min);
Assert.AreEqual(63, capacity);
}
#endregion
}
}