Merge branch 'master' into fix-5227

This commit is contained in:
Loredana Crusoveanu
2021-12-02 11:16:06 +02:00
committed by GitHub
282 changed files with 3796 additions and 492 deletions

View File

@@ -18,6 +18,7 @@ public class StringFirstCharacterUppercaseUnitTest {
public void givenString_whenCheckingWithRegex_thenStringCapitalized() {
String example = "Katie";
String regEx = "[A-Z]\\w*";
Assertions.assertTrue(example.matches(regEx));
}