Skip to content

Commit e593d0f

Browse files
committed
Update SymbolConstantsTest.java
1 parent 9df5ea9 commit e593d0f

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

microsphere-java-core/src/test/java/io/microsphere/constants/SymbolConstantsTest.java

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,8 @@
4343
import static io.microsphere.constants.SymbolConstants.GREATER_THAN_OR_EQUAL_TO;
4444
import static io.microsphere.constants.SymbolConstants.HYPHEN;
4545
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;
4648
import static io.microsphere.constants.SymbolConstants.LEFT_PARENTHESIS;
4749
import static io.microsphere.constants.SymbolConstants.LEFT_PARENTHESIS_CHAR;
4850
import static io.microsphere.constants.SymbolConstants.LEFT_SQUARE_BRACKET;
@@ -58,6 +60,8 @@
5860
import static io.microsphere.constants.SymbolConstants.QUESTION_MARK_CHAR;
5961
import static io.microsphere.constants.SymbolConstants.QUOTE;
6062
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;
6165
import static io.microsphere.constants.SymbolConstants.RIGHT_PARENTHESIS;
6266
import static io.microsphere.constants.SymbolConstants.RIGHT_PARENTHESIS_CHAR;
6367
import static io.microsphere.constants.SymbolConstants.RIGHT_SQUARE_BRACKET;
@@ -116,6 +120,8 @@ public void test() {
116120
assertEquals('|', PIPE_CHAR);
117121
assertEquals('[', LEFT_SQUARE_BRACKET_CHAR);
118122
assertEquals(']', RIGHT_SQUARE_BRACKET_CHAR);
123+
assertEquals('{', LEFT_CURLY_BRACE_CHAR);
124+
assertEquals('}', RIGHT_CURLY_BRACE_CHAR);
119125

120126
assertEquals(",", COMMA);
121127
assertEquals(" ", SPACE);
@@ -147,5 +153,7 @@ public void test() {
147153
assertEquals("|", PIPE);
148154
assertEquals("[", LEFT_SQUARE_BRACKET);
149155
assertEquals("]", RIGHT_SQUARE_BRACKET);
156+
assertEquals("{", LEFT_CURLY_BRACE);
157+
assertEquals("}", RIGHT_CURLY_BRACE);
150158
}
151159
}

0 commit comments

Comments
 (0)