Deleted MergeSortTest.java

This commit is contained in:
Vaibhav Sahay 2018-09-29 15:44:14 +05:30 committed by GitHub
parent d01ab8e3eb
commit 681815d97f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 18 deletions

View File

@ -1,18 +0,0 @@
package com.baeldung.algorithms.mergesort;
import static org.junit.jupiter.api.Assertions.*;
import org.junit.jupiter.api.Test;
class MergeSortTest {
@Test
void positiveTest() {
int[] input = { 5, 1, 6, 2, 3, 4 };
int[] expected = { 1, 2, 3, 4, 5, 6 };
MergeSort.mergeSort(input, input.length);
assertArrayEquals(expected, input);
}
}