We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2566286 commit cd58b34Copy full SHA for cd58b34
generator/src/test/java/com/reajason/javaweb/memshell/config/GodzillaShellConfigTest.java
@@ -2,7 +2,7 @@
2
3
import org.junit.jupiter.api.Test;
4
5
-import static org.junit.jupiter.api.Assertions.assertEquals;
+import static org.junit.jupiter.api.Assertions.*;
6
7
/**
8
* @author ReaJason
@@ -14,6 +14,7 @@ class GodzillaShellConfigTest {
14
void test() {
15
GodzillaConfig shellConfig = GodzillaConfig.builder()
16
.pass("pass").build();
17
- assertEquals("key", shellConfig.getKey());
+ assertEquals("pass", shellConfig.getPass());
18
+ assertNotEquals("key", shellConfig.getKey());
19
}
20
0 commit comments