|
100 | 100 | import static io.microsphere.constants.Constants.ZIP_PROTOCOL; |
101 | 101 | import static io.microsphere.constants.FileConstants.JAVA_EXTENSION; |
102 | 102 | import static io.microsphere.constants.ProtocolConstants.CONSOLE_PROTOCOL; |
| 103 | +import static io.microsphere.constants.SymbolConstants.LEFT_CURLY_BRACE; |
| 104 | +import static io.microsphere.constants.SymbolConstants.LEFT_CURLY_BRACE_CHAR; |
103 | 105 | import static io.microsphere.constants.SymbolConstants.LEFT_SQUARE_BRACKET; |
104 | 106 | import static io.microsphere.constants.SymbolConstants.LEFT_SQUARE_BRACKET_CHAR; |
105 | 107 | import static io.microsphere.constants.SymbolConstants.PIPE_CHAR; |
| 108 | +import static io.microsphere.constants.SymbolConstants.RIGHT_CURLY_BRACE; |
| 109 | +import static io.microsphere.constants.SymbolConstants.RIGHT_CURLY_BRACE_CHAR; |
106 | 110 | import static io.microsphere.constants.SymbolConstants.RIGHT_SQUARE_BRACKET; |
107 | 111 | import static io.microsphere.constants.SymbolConstants.RIGHT_SQUARE_BRACKET_CHAR; |
108 | 112 | import static io.microsphere.constants.SymbolConstants.VERTICAL_BAR_CHAR; |
@@ -186,6 +190,8 @@ public void test() { |
186 | 190 | assertEquals('|', PIPE_CHAR); |
187 | 191 | assertEquals('[', LEFT_SQUARE_BRACKET_CHAR); |
188 | 192 | assertEquals(']', RIGHT_SQUARE_BRACKET_CHAR); |
| 193 | + assertEquals('{', LEFT_CURLY_BRACE_CHAR); |
| 194 | + assertEquals('}', RIGHT_CURLY_BRACE_CHAR); |
189 | 195 |
|
190 | 196 | assertEquals(",", COMMA); |
191 | 197 | assertEquals(" ", SPACE); |
@@ -216,5 +222,7 @@ public void test() { |
216 | 222 | assertEquals("|", PIPE); |
217 | 223 | assertEquals("[", LEFT_SQUARE_BRACKET); |
218 | 224 | assertEquals("]", RIGHT_SQUARE_BRACKET); |
| 225 | + assertEquals("{", LEFT_CURLY_BRACE); |
| 226 | + assertEquals("}", RIGHT_CURLY_BRACE); |
219 | 227 | } |
220 | 228 | } |
0 commit comments