@@ -39,12 +39,12 @@ public void testImmutalibity() {
3939
4040 format .withDelimiter ('?' );
4141 format .withQuoteChar ('?' );
42+ format .withQuotePolicy (Quote .ALL );
4243 format .withCommentStart ('?' );
4344 format .withLineSeparator ("?" );
4445 format .withEscape ('?' );
4546 format .withIgnoreSurroundingSpaces (false );
4647 format .withIgnoreEmptyLines (false );
47- format .withQuotePolicy (Quote .ALL );
4848
4949 assertEquals ('!' , format .getDelimiter ());
5050 assertEquals ('!' , format .getQuoteChar ().charValue ());
@@ -64,14 +64,13 @@ public void testMutators() {
6464
6565 assertEquals ('?' , format .withDelimiter ('?' ).getDelimiter ());
6666 assertEquals ('?' , format .withQuoteChar ('?' ).getQuoteChar ().charValue ());
67+ assertEquals (Quote .ALL , format .withQuotePolicy (Quote .ALL ).getQuotePolicy ());
6768 assertEquals ('?' , format .withCommentStart ('?' ).getCommentStart ().charValue ());
6869 assertEquals ("?" , format .withLineSeparator ("?" ).getLineSeparator ());
6970 assertEquals ('?' , format .withEscape ('?' ).getEscape ().charValue ());
7071
7172 assertFalse (format .withIgnoreSurroundingSpaces (false ).getIgnoreSurroundingSpaces ());
7273 assertFalse (format .withIgnoreEmptyLines (false ).getIgnoreEmptyLines ());
73-
74- assertEquals (Quote .ALL , format .withQuotePolicy (Quote .ALL ).getQuotePolicy ());
7574 }
7675
7776 @ Test
0 commit comments