Skip to content

Commit 9df5ea9

Browse files
committed
Update ConstantsTest.java
1 parent 63b728a commit 9df5ea9

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

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

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,9 +100,13 @@
100100
import static io.microsphere.constants.Constants.ZIP_PROTOCOL;
101101
import static io.microsphere.constants.FileConstants.JAVA_EXTENSION;
102102
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;
103105
import static io.microsphere.constants.SymbolConstants.LEFT_SQUARE_BRACKET;
104106
import static io.microsphere.constants.SymbolConstants.LEFT_SQUARE_BRACKET_CHAR;
105107
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;
106110
import static io.microsphere.constants.SymbolConstants.RIGHT_SQUARE_BRACKET;
107111
import static io.microsphere.constants.SymbolConstants.RIGHT_SQUARE_BRACKET_CHAR;
108112
import static io.microsphere.constants.SymbolConstants.VERTICAL_BAR_CHAR;
@@ -186,6 +190,8 @@ public void test() {
186190
assertEquals('|', PIPE_CHAR);
187191
assertEquals('[', LEFT_SQUARE_BRACKET_CHAR);
188192
assertEquals(']', RIGHT_SQUARE_BRACKET_CHAR);
193+
assertEquals('{', LEFT_CURLY_BRACE_CHAR);
194+
assertEquals('}', RIGHT_CURLY_BRACE_CHAR);
189195

190196
assertEquals(",", COMMA);
191197
assertEquals(" ", SPACE);
@@ -216,5 +222,7 @@ public void test() {
216222
assertEquals("|", PIPE);
217223
assertEquals("[", LEFT_SQUARE_BRACKET);
218224
assertEquals("]", RIGHT_SQUARE_BRACKET);
225+
assertEquals("{", LEFT_CURLY_BRACE);
226+
assertEquals("}", RIGHT_CURLY_BRACE);
219227
}
220228
}

0 commit comments

Comments
 (0)