Merge pull request #3 from eugenp/master
Merge updates from eugenp/tutorials
This commit is contained in:
commit
10f749392d
|
@ -0,0 +1,43 @@
|
||||||
|
package com.baeldung.string;
|
||||||
|
|
||||||
|
import static org.hamcrest.CoreMatchers.equalTo;
|
||||||
|
import static org.hamcrest.MatcherAssert.assertThat;
|
||||||
|
|
||||||
|
import org.junit.Test;
|
||||||
|
|
||||||
|
public class StringAPITest {
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void whenPositiveArgument_thenReturnIndentedString() {
|
||||||
|
String multilineStr = "This is\na multiline\nstring.";
|
||||||
|
String outputStr = " This is\n a multiline\n string.\n";
|
||||||
|
|
||||||
|
String postIndent = multilineStr.indent(3);
|
||||||
|
|
||||||
|
assertThat(postIndent, equalTo(outputStr));
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void whenNegativeArgument_thenReturnReducedIndentedString() {
|
||||||
|
String multilineStr = " This is\n a multiline\n string.";
|
||||||
|
String outputStr = " This is\n a multiline\n string.\n";
|
||||||
|
|
||||||
|
String postIndent = multilineStr.indent(-2);
|
||||||
|
|
||||||
|
assertThat(postIndent, equalTo(outputStr));
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void whenTransformUsingLamda_thenReturnTransformedString() {
|
||||||
|
String result = "hello".transform(input -> input + " world!");
|
||||||
|
|
||||||
|
assertThat(result, equalTo("hello world!"));
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void whenTransformUsingParseInt_thenReturnInt() {
|
||||||
|
int result = "42".transform(Integer::parseInt);
|
||||||
|
|
||||||
|
assertThat(result, equalTo(42));
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue