forked from fishercoder1534/Leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_340Test.java
55 lines (43 loc) · 1.13 KB
/
_340Test.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
package com.fishercoder;
import com.fishercoder.solutions._340;
import org.junit.BeforeClass;
import org.junit.Test;
import static org.junit.Assert.assertEquals;
/**
* Created by stevesun on 6/10/17.
*/
public class _340Test {
private static _340 test;
@BeforeClass
public static void setup(){
test = new _340();
}
@Test
public void test1(){
assertEquals(3, test.lengthOfLongestSubstringKDistinct("eceba", 2));
}
@Test
public void test2(){
assertEquals(0, test.lengthOfLongestSubstringKDistinct("", 0));
}
@Test
public void test3(){
assertEquals(0, test.lengthOfLongestSubstringKDistinct("a", 0));
}
@Test
public void test4(){
assertEquals(1, test.lengthOfLongestSubstringKDistinct("a", 1));
}
@Test
public void test5(){
assertEquals(1, test.lengthOfLongestSubstringKDistinct("a", 2));
}
@Test
public void test6(){
assertEquals(2, test.lengthOfLongestSubstringKDistinct("aa", 1));
}
@Test
public void test7(){
assertEquals(3, test.lengthOfLongestSubstringKDistinct("bacc", 2));
}
}