빌드실패 재시도

This commit is contained in:
jinia91
2022-02-03 01:26:52 +09:00
parent dc3ce847cc
commit 3675402485
2 changed files with 25 additions and 24 deletions

1
.gitignore vendored
View File

@@ -43,3 +43,4 @@ out/
### config ### ### config ###
src/main/resources/application.yml src/main/resources/application.yml
src/main/resources/application-dev.yml src/main/resources/application-dev.yml
#/logs/

View File

@@ -1,23 +1,23 @@
package myblog.blog.article.controller; //package myblog.blog.article.controller;
//
import myblog.blog.article.service.ArticleService; //import myblog.blog.article.service.ArticleService;
import org.junit.jupiter.api.Test; //import org.junit.jupiter.api.Test;
import org.springframework.beans.factory.annotation.Autowired; //import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest; //import org.springframework.boot.test.context.SpringBootTest;
//
@SpringBootTest //@SpringBootTest
class ArticleControllerTest { //class ArticleControllerTest {
//
@Autowired // @Autowired
ArticleService articleService; // ArticleService articleService;
//
//
@Test // @Test
public void 게시물글쓰기() throws Exception { // public void 게시물글쓰기() throws Exception {
// given // // given
//
// when // // when
//
// then // // then
} // }
} //}