Skip to content

Commit

Permalink
a reformat code
Browse files Browse the repository at this point in the history
  • Loading branch information
actions-user committed Mar 4, 2024
1 parent 85093d2 commit 091bfa9
Showing 1 changed file with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -128,13 +128,13 @@ public ReplaceUseCase(String startingString, String find, String replace, String
public void testSplitting()
{
var expected = """
1a2aa3, a -> [1, 2, , 3]
1ś2śś3, ś -> [1, 2, , 3]
1a2aa3a, a -> [1, 2, , 3]
1ś2śś3ś, ś -> [1, 2, , 3]
1a2aa3aa, a -> [1, 2, , 3, ]
1ś2śś3śś, ś -> [1, 2, , 3, ]
""";
1a2aa3, a -> [1, 2, , 3]
1ś2śś3, ś -> [1, 2, , 3]
1a2aa3a, a -> [1, 2, , 3]
1ś2śś3ś, ś -> [1, 2, , 3]
1a2aa3aa, a -> [1, 2, , 3, ]
1ś2śś3śś, ś -> [1, 2, , 3, ]
""";
ParseInput.from(expected).withTypes(String.class, String.class)
.verifyAll((i, p) -> Arrays.toString(StringUtils.splitt(i, p)));
}
Expand Down

0 comments on commit 091bfa9

Please sign in to comment.