Skip to content
Snippets Groups Projects
Commit b60ed927 authored by ribeaudc's avatar ribeaudc
Browse files

Use 'StringUtils.join' instead of 'StringUtilities.concatenate'.

SVN: 206
parent 8fe75382
No related merge requests found
......@@ -53,7 +53,6 @@ public class StringUtilitiesTest
public void testConcatenate()
{
final List<String> list = Arrays.asList("one", "two", "three");
assertEquals("onetwothree", StringUtilities.concatenate(list, ""));
assertEquals("one two three", StringUtilities.concatenateWithSpace(list));
final String brokenDownInLines = String.format("one%1$stwo%1$sthree", System.getProperty("line.separator"));
assertEquals(brokenDownInLines, StringUtilities.concatenateWithNewLine(list));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment