forked from TheAlgorithms/Java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCountingSortTest.java
More file actions
22 lines (15 loc) · 544 Bytes
/
CountingSortTest.java
File metadata and controls
22 lines (15 loc) · 544 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.sorts;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Test;
class CountingSortTest {
@Test
void testCountingSort() {
CountingSort countingSort = new CountingSort();
// Unsorted integer array
Integer[] unsorted = new Integer[]{1, 4, 1, 2, 7, 5, 2};
// Sorted integer array
Integer[] sorted = new Integer[]{1, 1, 2, 2, 4, 5, 7};
// Comparing the two integer arrays
Assertions.assertArrayEquals(sorted, countingSort.sort(unsorted));
}
}