mirror of
https://github.com/TheAlgorithms/Java.git
synced 2025-07-27 14:34:05 +08:00
@ -1,10 +1,10 @@
|
||||
package com.thealgorithms.dynamicprogramming;
|
||||
|
||||
import static org.junit.jupiter.api.Assertions.assertEquals;
|
||||
|
||||
import org.junit.jupiter.params.ParameterizedTest;
|
||||
import org.junit.jupiter.params.provider.CsvSource;
|
||||
|
||||
import static org.junit.jupiter.api.Assertions.assertEquals;
|
||||
|
||||
public class LevenshteinDistanceTests {
|
||||
|
||||
@ParameterizedTest
|
||||
@ -13,5 +13,4 @@ public class LevenshteinDistanceTests {
|
||||
int result = LevenshteinDistance.calculateLevenshteinDistance(str1, str2);
|
||||
assertEquals(distance, result);
|
||||
}
|
||||
|
||||
}
|
||||
|
Reference in New Issue
Block a user