|
43 | 43 | import static io.microsphere.constants.SymbolConstants.GREATER_THAN_OR_EQUAL_TO; |
44 | 44 | import static io.microsphere.constants.SymbolConstants.HYPHEN; |
45 | 45 | import static io.microsphere.constants.SymbolConstants.HYPHEN_CHAR; |
| 46 | +import static io.microsphere.constants.SymbolConstants.LEFT_CURLY_BRACE; |
| 47 | +import static io.microsphere.constants.SymbolConstants.LEFT_CURLY_BRACE_CHAR; |
46 | 48 | import static io.microsphere.constants.SymbolConstants.LEFT_PARENTHESIS; |
47 | 49 | import static io.microsphere.constants.SymbolConstants.LEFT_PARENTHESIS_CHAR; |
48 | 50 | import static io.microsphere.constants.SymbolConstants.LEFT_SQUARE_BRACKET; |
|
58 | 60 | import static io.microsphere.constants.SymbolConstants.QUESTION_MARK_CHAR; |
59 | 61 | import static io.microsphere.constants.SymbolConstants.QUOTE; |
60 | 62 | import static io.microsphere.constants.SymbolConstants.QUOTE_CHAR; |
| 63 | +import static io.microsphere.constants.SymbolConstants.RIGHT_CURLY_BRACE; |
| 64 | +import static io.microsphere.constants.SymbolConstants.RIGHT_CURLY_BRACE_CHAR; |
61 | 65 | import static io.microsphere.constants.SymbolConstants.RIGHT_PARENTHESIS; |
62 | 66 | import static io.microsphere.constants.SymbolConstants.RIGHT_PARENTHESIS_CHAR; |
63 | 67 | import static io.microsphere.constants.SymbolConstants.RIGHT_SQUARE_BRACKET; |
@@ -116,6 +120,8 @@ public void test() { |
116 | 120 | assertEquals('|', PIPE_CHAR); |
117 | 121 | assertEquals('[', LEFT_SQUARE_BRACKET_CHAR); |
118 | 122 | assertEquals(']', RIGHT_SQUARE_BRACKET_CHAR); |
| 123 | + assertEquals('{', LEFT_CURLY_BRACE_CHAR); |
| 124 | + assertEquals('}', RIGHT_CURLY_BRACE_CHAR); |
119 | 125 |
|
120 | 126 | assertEquals(",", COMMA); |
121 | 127 | assertEquals(" ", SPACE); |
@@ -147,5 +153,7 @@ public void test() { |
147 | 153 | assertEquals("|", PIPE); |
148 | 154 | assertEquals("[", LEFT_SQUARE_BRACKET); |
149 | 155 | assertEquals("]", RIGHT_SQUARE_BRACKET); |
| 156 | + assertEquals("{", LEFT_CURLY_BRACE); |
| 157 | + assertEquals("}", RIGHT_CURLY_BRACE); |
150 | 158 | } |
151 | 159 | } |
0 commit comments