빌드실패 재시도

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

3
.gitignore vendored
View File

@@ -42,4 +42,5 @@ out/
### config ###
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;
import myblog.blog.article.service.ArticleService;
import org.junit.jupiter.api.Test;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
@SpringBootTest
class ArticleControllerTest {
@Autowired
ArticleService articleService;
@Test
public void 게시물글쓰기() throws Exception {
// given
// when
// then
}
}
//package myblog.blog.article.controller;
//
//import myblog.blog.article.service.ArticleService;
//import org.junit.jupiter.api.Test;
//import org.springframework.beans.factory.annotation.Autowired;
//import org.springframework.boot.test.context.SpringBootTest;
//
//@SpringBootTest
//class ArticleControllerTest {
//
// @Autowired
// ArticleService articleService;
//
//
// @Test
// public void 게시물글쓰기() throws Exception {
// // given
//
// // when
//
// // then
// }
//}