refactoring code snippets
This commit is contained in:
parent
d1bbd3502b
commit
bfca572d04
@ -4,7 +4,6 @@ import org.junit.Test;
|
|||||||
import static org.assertj.core.api.Assertions.assertThat;
|
import static org.assertj.core.api.Assertions.assertThat;
|
||||||
|
|
||||||
public class SplitStringByNewLineUnitTest {
|
public class SplitStringByNewLineUnitTest {
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
public void givenString_whenSplitByNewLineUsingRegularExpressionPattern_thenReturnsArray() {
|
public void givenString_whenSplitByNewLineUsingRegularExpressionPattern_thenReturnsArray() {
|
||||||
assertThat("Line1\nLine2\nLine3".split("\\r?\\n|\\r")).containsExactly("Line1", "Line2", "Line3");
|
assertThat("Line1\nLine2\nLine3".split("\\r?\\n|\\r")).containsExactly("Line1", "Line2", "Line3");
|
||||||
@ -22,6 +21,4 @@ public class SplitStringByNewLineUnitTest {
|
|||||||
|
|
||||||
assertThat("Line1\r\nLine2\r\nLine3".split("\\R")).containsExactly("Line1", "Line2", "Line3");
|
assertThat("Line1\r\nLine2\r\nLine3".split("\\R")).containsExactly("Line1", "Line2", "Line3");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user