-
Notifications
You must be signed in to change notification settings - Fork 19.9k
/
Copy pathShuffleArrayTest.java
84 lines (68 loc) · 2.37 KB
/
ShuffleArrayTest.java
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
package com.thealgorithms.misc;
import static org.junit.jupiter.api.Assertions.assertArrayEquals;
import static org.junit.jupiter.api.Assertions.assertNotEquals;
import static org.junit.jupiter.api.Assertions.assertTrue;
import org.junit.jupiter.api.Test;
public class ShuffleArrayTest {
@Test
void testShuffleBasic() {
int[] arr = {1, 2, 3, 4, 5};
int[] originalArr = arr.clone(); // Clone original array for comparison
ShuffleArray.shuffle(arr);
// Check that the shuffled array is not the same as the original
assertNotEquals(originalArr, arr);
}
@Test
void testShuffleSingleElement() {
int[] arr = {1};
int[] originalArr = arr.clone();
ShuffleArray.shuffle(arr);
// Check that the shuffled array is the same as the original
assertArrayEquals(originalArr, arr);
}
@Test
void testShuffleTwoElements() {
int[] arr = {1, 2};
int[] originalArr = arr.clone();
ShuffleArray.shuffle(arr);
// Check that the shuffled array is not the same as the original
assertNotEquals(originalArr, arr);
// Check that the shuffled array still contains the same elements
assertTrue(arr[0] == 1 || arr[0] == 2);
assertTrue(arr[1] == 1 || arr[1] == 2);
}
@Test
void testShuffleEmptyArray() {
int[] arr = {};
int[] originalArr = arr.clone();
ShuffleArray.shuffle(arr);
// Check that the shuffled array is the same as the original (still empty)
assertArrayEquals(originalArr, arr);
}
@Test
void testShuffleLargeArray() {
int[] arr = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10};
int[] originalArr = arr.clone();
ShuffleArray.shuffle(arr);
// Check that the shuffled array is not the same as the original
assertNotEquals(originalArr, arr);
}
@Test
void testShuffleRetainsElements() {
int[] arr = {1, 2, 3, 4, 5};
ShuffleArray.shuffle(arr);
// Check that the shuffled array contains the same elements
assertTrue(arr.length == 5);
for (int i = 1; i <= 5; i++) {
assertTrue(contains(arr, i));
}
}
private boolean contains(int[] arr, int value) {
for (int num : arr) {
if (num == value) {
return true;
}
}
return false;
}
}