- Notifications
You must be signed in to change notification settings - Fork 19.9k
/
Copy pathLongestCommonSubsequenceTest.java
89 lines (77 loc) · 2.86 KB
/
LongestCommonSubsequenceTest.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
85
86
87
88
89
packagecom.thealgorithms.dynamicprogramming;
importstaticorg.junit.jupiter.api.Assertions.assertEquals;
importorg.junit.jupiter.api.Test;
publicclassLongestCommonSubsequenceTest {
@Test
publicvoidtestLCSBasic() {
Stringstr1 = "ABCBDAB";
Stringstr2 = "BDCAB";
Stringexpected = "BDAB"; // The longest common subsequence
Stringresult = LongestCommonSubsequence.getLCS(str1, str2);
assertEquals(expected, result);
}
@Test
publicvoidtestLCSIdenticalStrings() {
Stringstr1 = "AGGTAB";
Stringstr2 = "AGGTAB";
Stringexpected = "AGGTAB"; // LCS is the same as the strings
Stringresult = LongestCommonSubsequence.getLCS(str1, str2);
assertEquals(expected, result);
}
@Test
publicvoidtestLCSNoCommonCharacters() {
Stringstr1 = "ABC";
Stringstr2 = "XYZ";
Stringexpected = ""; // No common subsequence
Stringresult = LongestCommonSubsequence.getLCS(str1, str2);
assertEquals(expected, result);
}
@Test
publicvoidtestLCSWithEmptyString() {
Stringstr1 = "";
Stringstr2 = "XYZ";
Stringexpected = ""; // LCS with an empty string should be empty
Stringresult = LongestCommonSubsequence.getLCS(str1, str2);
assertEquals(expected, result);
}
@Test
publicvoidtestLCSWithBothEmptyStrings() {
Stringstr1 = "";
Stringstr2 = "";
Stringexpected = ""; // LCS with both strings empty should be empty
Stringresult = LongestCommonSubsequence.getLCS(str1, str2);
assertEquals(expected, result);
}
@Test
publicvoidtestLCSWithNullFirstString() {
Stringstr1 = null;
Stringstr2 = "XYZ";
Stringexpected = null; // Should return null if first string is null
Stringresult = LongestCommonSubsequence.getLCS(str1, str2);
assertEquals(expected, result);
}
@Test
publicvoidtestLCSWithNullSecondString() {
Stringstr1 = "ABC";
Stringstr2 = null;
Stringexpected = null; // Should return null if second string is null
Stringresult = LongestCommonSubsequence.getLCS(str1, str2);
assertEquals(expected, result);
}
@Test
publicvoidtestLCSWithNullBothStrings() {
Stringstr1 = null;
Stringstr2 = null;
Stringexpected = null; // Should return null if both strings are null
Stringresult = LongestCommonSubsequence.getLCS(str1, str2);
assertEquals(expected, result);
}
@Test
publicvoidtestLCSWithLongerStringContainingCommonSubsequence() {
Stringstr1 = "ABCDEF";
Stringstr2 = "AEBDF";
Stringexpected = "ABDF"; // Common subsequence is "ABDF"
Stringresult = LongestCommonSubsequence.getLCS(str1, str2);
assertEquals(expected, result);
}
}