Skip to content

Commit

Permalink
Styles.
Browse files Browse the repository at this point in the history
  • Loading branch information
AMashenkov committed Dec 25, 2024
1 parent c2ee84b commit ba05875
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,9 @@ public void validSimpleNames(String source, String expected) {

@ParameterizedTest
@CsvSource({
"foo.bar, FOO, BAR", "fOo.bAr, FOO, BAR", "FOO.BAR, FOO, BAR", "foo.b23, FOO, B23", "f23.bar, F23, BAR",// Uppercased
"\"FOO\".\"BAR\", FOO, BAR", "\"foo\".\"bar\", foo, bar", "\"fOo\".\"bAr\", fOo, bAr", "\"fOo\".bAr, fOo, BAR",
"fOo.\"bAr\", FOO, bAr", "\"@#$\".bar, @#$, BAR", "foo.\"@#$\", FOO, @#$", // Quoted
"foo.bar, FOO, BAR", "fOo.bAr, FOO, BAR", "FOO.BAR, FOO, BAR", "foo.b23, FOO, B23", "f23.bar, F23, BAR", // Uppercased
"\"FOO\".\"BAR\", FOO, BAR", "\"foo\".\"bar\", foo, bar", "\"fOo\".\"bAr\", fOo, bAr", "\"fOo\".bAr, fOo, BAR", // Quoted
"fOo.\"bAr\", FOO, bAr", "\"@#$\".bar, @#$, BAR", "foo.\"@#$\", FOO, @#$",
"\"foo.bar\".baz, foo.bar, BAZ", "foo.\"bar.baz\", FOO, bar.baz",
"\"foo.\"\"bar\"\"\".baz, foo.\"bar\", BAZ", "foo.\"bar.\"\"baz\"\"\", FOO, bar.\"baz\"" // Escaped
})
Expand Down

0 comments on commit ba05875

Please sign in to comment.