Skip to content

Commit

Permalink
test 깃허브 액션 ci fail Test
Browse files Browse the repository at this point in the history
  • Loading branch information
seongjunnoh committed Jul 7, 2024
1 parent 66d85f6 commit 288eef2
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/main/resources/application.properties

This file was deleted.

3 changes: 3 additions & 0 deletions src/main/resources/application.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
spring:
application:
name: space-spring
13 changes: 13 additions & 0 deletions src/test/java/space/space_spring/SimpleFailTest.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
package space.space_spring;

import org.junit.jupiter.api.Test;

import static org.junit.jupiter.api.Assertions.assertEquals;

public class SimpleFailTest {
@Test
void testFailure() {
// 이 테스트는 항상 실패합니다.
assertEquals(1, 0, "1은 0과 같지 않습니다.");
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ class SpaceSpringApplicationTests {

@Test
void contextLoads() {

}


}

0 comments on commit 288eef2

Please sign in to comment.