1
- // Copyright © 2020 ONIXLabs
2
- //
1
+ // Copyright 2020 ONIXLabs
2
+ //
3
3
// Licensed under the Apache License, Version 2.0 (the "License");
4
4
// you may not use this file except in compliance with the License.
5
5
// You may obtain a copy of the License at
6
- //
6
+ //
7
7
// http://www.apache.org/licenses/LICENSE-2.0
8
- //
8
+ //
9
9
// Unless required by applicable law or agreed to in writing, software
10
10
// distributed under the License is distributed on an "AS IS" BASIS,
11
11
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@@ -22,39 +22,39 @@ public sealed class ArrayExtensionTests
22
22
public void CopyShouldProduceExpectedResult ( )
23
23
{
24
24
// Given
25
- int [ ] array = { 1 , 2 , 3 , 4 , 5 } ;
26
- int [ ] expected = { 1 , 2 , 3 , 4 , 5 } ;
25
+ int [ ] array = [ 1 , 2 , 3 , 4 , 5 ] ;
26
+ int [ ] expected = [ 1 , 2 , 3 , 4 , 5 ] ;
27
27
28
28
// When
29
29
int [ ] actual = array . Copy ( ) ;
30
30
31
31
// Then
32
32
Assert . Equal ( expected , actual ) ;
33
- Assert . True ( ! ReferenceEquals ( array , actual ) ) ;
33
+ Assert . False ( ReferenceEquals ( array , actual ) ) ;
34
34
}
35
35
36
36
[ Fact ( DisplayName = "Array.Copy with index and count parameters should produce a copy of an array" ) ]
37
37
public void CopyWithParametersShouldProduceExpectedResult ( )
38
38
{
39
39
// Given
40
- int [ ] array = { 1 , 2 , 3 , 4 , 5 } ;
41
- int [ ] expected = { 3 , 4 , 5 } ;
40
+ int [ ] array = [ 1 , 2 , 3 , 4 , 5 ] ;
41
+ int [ ] expected = [ 3 , 4 , 5 ] ;
42
42
43
43
// When
44
44
int [ ] actual = array . Copy ( 2 , 3 ) ;
45
45
46
46
// Then
47
47
Assert . Equal ( expected , actual ) ;
48
- Assert . True ( ! ReferenceEquals ( array , actual ) ) ;
48
+ Assert . False ( ReferenceEquals ( array , actual ) ) ;
49
49
}
50
50
51
51
[ Fact ( DisplayName = "Array.ConcatenateWith should produce a concatenation of two arrays" ) ]
52
52
public void ConcatenateWithShouldProduceExpectedResult ( )
53
53
{
54
54
// Given
55
- int [ ] left = { 1 , 2 , 3 , 4 , 5 } ;
56
- int [ ] right = { 6 , 7 , 8 , 9 , 10 } ;
57
- int [ ] expected = { 1 , 2 , 3 , 4 , 5 , 6 , 7 , 8 , 9 , 10 } ;
55
+ int [ ] left = [ 1 , 2 , 3 , 4 , 5 ] ;
56
+ int [ ] right = [ 6 , 7 , 8 , 9 , 10 ] ;
57
+ int [ ] expected = [ 1 , 2 , 3 , 4 , 5 , 6 , 7 , 8 , 9 , 10 ] ;
58
58
59
59
// When
60
60
int [ ] actual = left . ConcatenateWith ( right ) ;
0 commit comments