@@ -36,14 +36,44 @@ public void shouldReturnEmptyString() {
36
36
// given
37
37
String text1 = "" ;
38
38
String text2 = " @ \n #* \\ $/&) !(&*\r # . .." ;
39
+ String text3 = "*****************************************************" +
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
+ "****************************************************************" ;
39
67
40
68
// when
41
- String result1 = new SimpleSlugService ().slugify ("" );
42
- String result2 = new SimpleSlugService ().slugify ("" );
69
+ String result1 = new SimpleSlugService ().slugify (text1 );
70
+ String result2 = new SimpleSlugService ().slugify (text2 );
71
+ String result3 = new SimpleSlugService ().slugify (text3 );
43
72
44
73
// then
45
74
assertEquals ("" , result1 );
46
75
assertEquals ("" , result2 );
76
+ assertEquals ("" , result3 );
47
77
}
48
78
49
79
@ Test
0 commit comments