|
45 | 45 | import static io.microsphere.constants.SymbolConstants.HYPHEN_CHAR; |
46 | 46 | import static io.microsphere.constants.SymbolConstants.LEFT_PARENTHESIS; |
47 | 47 | import static io.microsphere.constants.SymbolConstants.LEFT_PARENTHESIS_CHAR; |
| 48 | +import static io.microsphere.constants.SymbolConstants.LEFT_SQUARE_BRACKET; |
| 49 | +import static io.microsphere.constants.SymbolConstants.LEFT_SQUARE_BRACKET_CHAR; |
48 | 50 | import static io.microsphere.constants.SymbolConstants.LESS_THAN; |
49 | 51 | import static io.microsphere.constants.SymbolConstants.LESS_THAN_CHAR; |
50 | 52 | import static io.microsphere.constants.SymbolConstants.LESS_THAN_OR_EQUAL_TO; |
|
58 | 60 | import static io.microsphere.constants.SymbolConstants.QUOTE_CHAR; |
59 | 61 | import static io.microsphere.constants.SymbolConstants.RIGHT_PARENTHESIS; |
60 | 62 | import static io.microsphere.constants.SymbolConstants.RIGHT_PARENTHESIS_CHAR; |
| 63 | +import static io.microsphere.constants.SymbolConstants.RIGHT_SQUARE_BRACKET; |
| 64 | +import static io.microsphere.constants.SymbolConstants.RIGHT_SQUARE_BRACKET_CHAR; |
61 | 65 | import static io.microsphere.constants.SymbolConstants.SEMICOLON; |
62 | 66 | import static io.microsphere.constants.SymbolConstants.SEMICOLON_CHAR; |
63 | 67 | import static io.microsphere.constants.SymbolConstants.SHARP; |
@@ -110,6 +114,8 @@ public void test() { |
110 | 114 | assertEquals('*', WILDCARD_CHAR); |
111 | 115 | assertEquals('|', VERTICAL_BAR_CHAR); |
112 | 116 | assertEquals('|', PIPE_CHAR); |
| 117 | + assertEquals('[', LEFT_SQUARE_BRACKET_CHAR); |
| 118 | + assertEquals(']', RIGHT_SQUARE_BRACKET_CHAR); |
113 | 119 |
|
114 | 120 | assertEquals(",", COMMA); |
115 | 121 | assertEquals(" ", SPACE); |
@@ -139,5 +145,7 @@ public void test() { |
139 | 145 | assertEquals("*", WILDCARD); |
140 | 146 | assertEquals("|", VERTICAL_BAR); |
141 | 147 | assertEquals("|", PIPE); |
| 148 | + assertEquals("[", LEFT_SQUARE_BRACKET); |
| 149 | + assertEquals("]", RIGHT_SQUARE_BRACKET); |
142 | 150 | } |
143 | 151 | } |
0 commit comments