We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 59849c6 commit 9c842fdCopy full SHA for 9c842fd
Chapter2-1-1/src/test/java/com/didispace/ApplicationTests.java
@@ -31,10 +31,10 @@ public class ApplicationTests {
31
32
33
@Test
34
- public void getHello() throws Exception {
35
- Assert.assertEquals(blogProperties.getName(), "程序猿DD");
36
- Assert.assertEquals(blogProperties.getTitle(), "Spring Boot教程");
37
- Assert.assertEquals(blogProperties.getDesc(), "程序猿DD正在努力写《Spring Boot教程》");
+ public void test1() throws Exception {
+ Assert.assertEquals("程序猿DD", blogProperties.getName());
+ Assert.assertEquals("Spring Boot教程", blogProperties.getTitle());
+ Assert.assertEquals("程序猿DD正在努力写《Spring Boot教程》", blogProperties.getDesc());
38
39
log.info("随机数测试输出:");
40
log.info("随机字符串 : " + blogProperties.getValue());
0 commit comments