Add newline splitter test
This commit is contained in:
		| @@ -9,6 +9,17 @@ import java.util.Arrays; | |||||||
|  * Created by libraryaddict on 25/10/2018. |  * Created by libraryaddict on 25/10/2018. | ||||||
|  */ |  */ | ||||||
| public class DisguiseUtilitiesTest { | public class DisguiseUtilitiesTest { | ||||||
|  |     @Test | ||||||
|  |     public void testNewlineSplitter() { | ||||||
|  |         Assert.assertArrayEquals(new String[]{"Name 1", "Name 2"}, DisguiseUtilities.splitNewLine("Name 1\nName 2")); | ||||||
|  |         Assert.assertArrayEquals(new String[]{"Name 1", "Name 2"}, DisguiseUtilities.splitNewLine("Name 1\\nName 2")); | ||||||
|  |         Assert.assertArrayEquals(new String[]{"Name 1\\", "Name 2"}, | ||||||
|  |                 DisguiseUtilities.splitNewLine("Name 1\\\nName 2")); | ||||||
|  |         Assert.assertArrayEquals(new String[]{"Name 1\\nName 2"}, DisguiseUtilities.splitNewLine("Name 1\\\\nName 2")); | ||||||
|  |         Assert.assertArrayEquals(new String[]{"Name 1\\","Name 2"}, DisguiseUtilities.splitNewLine("Name 1\\\\\\nName 2")); | ||||||
|  |         Assert.assertArrayEquals(new String[]{"Name 1\\\\nName 2"}, DisguiseUtilities.splitNewLine("Name 1\\\\\\\\nName 2")); | ||||||
|  |     } | ||||||
|  |  | ||||||
|     @Test |     @Test | ||||||
|     public void testQuoteSplitter() { |     public void testQuoteSplitter() { | ||||||
|         // Test if splits are correct |         // Test if splits are correct | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user