Skip to content

Commit b12ebbe

Browse files
update/cleanup (#36)
General code cleanup
1 parent de3d697 commit b12ebbe

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+315
-448
lines changed

OnixLabs.Core.UnitTests/Collections/CollectionTests.cs

+37-54
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
// Copyright © 2020 ONIXLabs
2-
//
2+
//
33
// Licensed under the Apache License, Version 2.0 (the "License");
44
// you may not use this file except in compliance with the License.
55
// You may obtain a copy of the License at
6-
//
6+
//
77
// http://www.apache.org/licenses/LICENSE-2.0
8-
//
8+
//
99
// Unless required by applicable law or agreed to in writing, software
1010
// distributed under the License is distributed on an "AS IS" BASIS,
1111
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@@ -45,187 +45,170 @@ public sealed class CollectionTests
4545
public void CollectionsEmptyEnumerableShouldProduceTheExpectedResult()
4646
{
4747
// Given
48-
IEnumerable<object> expected = Enumerable.Empty<object>();
49-
IEnumerable<object> actual = EmptyEnumerable<object>();
48+
IEnumerable<object> candidate = EmptyEnumerable<object>();
5049

5150
// Then
52-
Assert.Equal(expected, actual);
51+
Assert.Empty(candidate);
5352
}
5453

5554
[Fact(DisplayName = "Collections.EmptyArray should produce the expected result")]
5655
public void CollectionsEmptyArrayShouldProduceTheExpectedResult()
5756
{
5857
// Given
59-
object[] expected = Array.Empty<object>();
60-
object[] actual = EmptyArray<object>();
58+
object[] candidate = EmptyArray<object>();
6159

6260
// Then
63-
Assert.Equal(expected, actual);
61+
Assert.Empty(candidate);
6462
}
6563

6664
[Fact(DisplayName = "Collections.EmptyImmutableArray should produce the expected result")]
6765
public void CollectionsEmptyImmutableArrayShouldProduceTheExpectedResult()
6866
{
6967
// Given
70-
ImmutableArray<object> expected = ImmutableArray.Create<object>();
71-
ImmutableArray<object> actual = EmptyImmutableArray<object>();
68+
ImmutableArray<object> candidate = EmptyImmutableArray<object>();
7269

7370
// Then
74-
Assert.Equal(expected, actual);
71+
Assert.Empty(candidate);
7572
}
7673

7774
[Fact(DisplayName = "Collections.EmptyList should produce the expected result")]
7875
public void CollectionsEmptyListShouldProduceTheExpectedResult()
7976
{
8077
// Given
81-
List<object> expected = new();
82-
List<object> actual = EmptyList<object>();
78+
List<object> candidate = EmptyList<object>();
8379

8480
// Then
85-
Assert.Equal(expected, actual);
81+
Assert.Empty(candidate);
8682
}
8783

8884
[Fact(DisplayName = "Collections.EmptyImmutableList should produce the expected result")]
8985
public void CollectionsEmptyImmutableListShouldProduceTheExpectedResult()
9086
{
9187
// Given
92-
ImmutableList<object> expected = ImmutableList.Create<object>();
93-
ImmutableList<object> actual = EmptyImmutableList<object>();
88+
ImmutableList<object> candidate = EmptyImmutableList<object>();
9489

9590
// Then
96-
Assert.Equal(expected, actual);
91+
Assert.Empty(candidate);
9792
}
9893

9994
[Fact(DisplayName = "Collections.EmptyDictionary should produce the expected result")]
10095
public void CollectionsEmptyDictionaryShouldProduceTheExpectedResult()
10196
{
10297
// Given
103-
Dictionary<object, object> expected = new();
104-
Dictionary<object, object> actual = EmptyDictionary<object, object>();
98+
Dictionary<object, object> candidate = EmptyDictionary<object, object>();
10599

106100
// Then
107-
Assert.Equal(expected, actual);
101+
Assert.Empty(candidate);
108102
}
109103

110104
[Fact(DisplayName = "Collections.EmptyImmutableDictionary should produce the expected result")]
111105
public void CollectionsEmptyImmutableDictionaryShouldProduceTheExpectedResult()
112106
{
113107
// Given
114-
ImmutableDictionary<object, object> expected = ImmutableDictionary.Create<object, object>();
115-
ImmutableDictionary<object, object> actual = EmptyImmutableDictionary<object, object>();
108+
ImmutableDictionary<object, object> candidate = EmptyImmutableDictionary<object, object>();
116109

117110
// Then
118-
Assert.Equal(expected, actual);
111+
Assert.Empty(candidate);
119112
}
120113

121114
[Fact(DisplayName = "Collections.EmptySortedDictionary should produce the expected result")]
122115
public void CollectionsEmptySortedDictionaryShouldProduceTheExpectedResult()
123116
{
124117
// Given
125-
SortedDictionary<object, object> expected = new();
126-
SortedDictionary<object, object> actual = EmptySortedDictionary<object, object>();
118+
SortedDictionary<object, object> candidate = EmptySortedDictionary<object, object>();
127119

128120
// Then
129-
Assert.Equal(expected, actual);
121+
Assert.Empty(candidate);
130122
}
131123

132124
[Fact(DisplayName = "Collections.EmptyImmutableSortedDictionary should produce the expected result")]
133125
public void CollectionsEmptyImmutableSortedDictionaryShouldProduceTheExpectedResult()
134126
{
135127
// Given
136-
ImmutableSortedDictionary<object, object> expected = ImmutableSortedDictionary.Create<object, object>();
137-
ImmutableSortedDictionary<object, object> actual = EmptyImmutableSortedDictionary<object, object>();
128+
ImmutableSortedDictionary<object, object> candidate = EmptyImmutableSortedDictionary<object, object>();
138129

139130
// Then
140-
Assert.Equal(expected, actual);
131+
Assert.Empty(candidate);
141132
}
142133

143134
[Fact(DisplayName = "Collections.EmptyHashSet should produce the expected result")]
144135
public void CollectionsEmptyHashSetShouldProduceTheExpectedResult()
145136
{
146137
// Given
147-
HashSet<object> expected = new();
148-
HashSet<object> actual = EmptyHashSet<object>();
138+
HashSet<object> candidate = EmptyHashSet<object>();
149139

150140
// Then
151-
Assert.Equal(expected, actual);
141+
Assert.Empty(candidate);
152142
}
153143

154144
[Fact(DisplayName = "Collections.EmptyImmutableHashSet should produce the expected result")]
155145
public void CollectionsEmptyImmutableHashSetShouldProduceTheExpectedResult()
156146
{
157147
// Given
158-
ImmutableHashSet<object> expected = ImmutableHashSet.Create<object>();
159-
ImmutableHashSet<object> actual = EmptyImmutableHashSet<object>();
148+
ImmutableHashSet<object> candidate = EmptyImmutableHashSet<object>();
160149

161150
// Then
162-
Assert.Equal(expected, actual);
151+
Assert.Empty(candidate);
163152
}
164153

165154
[Fact(DisplayName = "Collections.EmptySortedSet should produce the expected result")]
166155
public void CollectionsEmptySortedSetShouldProduceTheExpectedResult()
167156
{
168157
// Given
169-
SortedSet<object> expected = new();
170-
SortedSet<object> actual = EmptySortedSet<object>();
158+
SortedSet<object> candidate = EmptySortedSet<object>();
171159

172160
// Then
173-
Assert.Equal(expected, actual);
161+
Assert.Empty(candidate);
174162
}
175163

176164
[Fact(DisplayName = "Collections.EmptyImmutableSortedSet should produce the expected result")]
177165
public void CollectionsEmptyImmutableSortedSetShouldProduceTheExpectedResult()
178166
{
179167
// Given
180-
ImmutableSortedSet<object> expected = ImmutableSortedSet.Create<object>();
181-
ImmutableSortedSet<object> actual = EmptyImmutableSortedSet<object>();
168+
ImmutableSortedSet<object> candidate = EmptyImmutableSortedSet<object>();
182169

183170
// Then
184-
Assert.Equal(expected, actual);
171+
Assert.Empty(candidate);
185172
}
186173

187174
[Fact(DisplayName = "Collections.EmptyStack should produce the expected result")]
188175
public void CollectionsEmptyStackShouldProduceTheExpectedResult()
189176
{
190177
// Given
191-
Stack<object> expected = new();
192-
Stack<object> actual = EmptyStack<object>();
178+
Stack<object> candidate = EmptyStack<object>();
193179

194180
// Then
195-
Assert.Equal(expected, actual);
181+
Assert.Empty(candidate);
196182
}
197183

198184
[Fact(DisplayName = "Collections.EmptyImmutableStack should produce the expected result")]
199185
public void CollectionsEmptyImmutableStackShouldProduceTheExpectedResult()
200186
{
201187
// Given
202-
ImmutableStack<object> expected = ImmutableStack.Create<object>();
203-
ImmutableStack<object> actual = EmptyImmutableStack<object>();
188+
ImmutableStack<object> candidate = EmptyImmutableStack<object>();
204189

205190
// Then
206-
Assert.Equal(expected, actual);
191+
Assert.Empty(candidate);
207192
}
208193

209194
[Fact(DisplayName = "Collections.EmptyQueue should produce the expected result")]
210195
public void CollectionsEmptyQueueShouldProduceTheExpectedResult()
211196
{
212197
// Given
213-
Queue<object> expected = new();
214-
Queue<object> actual = EmptyQueue<object>();
198+
Queue<object> candidate = EmptyQueue<object>();
215199

216200
// Then
217-
Assert.Equal(expected, actual);
201+
Assert.Empty(candidate);
218202
}
219203

220204
[Fact(DisplayName = "Collections.EmptyImmutableQueue should produce the expected result")]
221205
public void CollectionsEmptyImmutableQueueShouldProduceTheExpectedResult()
222206
{
223207
// Given
224-
ImmutableQueue<object> expected = ImmutableQueue.Create<object>();
225-
ImmutableQueue<object> actual = EmptyImmutableQueue<object>();
208+
ImmutableQueue<object> candidate = EmptyImmutableQueue<object>();
226209

227210
// Then
228-
Assert.Equal(expected, actual);
211+
Assert.Empty(candidate);
229212
}
230213

231214
[Fact(DisplayName = "Collections.EnumerableOf should return the expected result")]

0 commit comments

Comments
 (0)