빌드실패 재시도
This commit is contained in:
1
.gitignore
vendored
1
.gitignore
vendored
@@ -43,3 +43,4 @@ out/
|
||||
### config ###
|
||||
src/main/resources/application.yml
|
||||
src/main/resources/application-dev.yml
|
||||
#/logs/
|
||||
@@ -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
|
||||
// }
|
||||
//}
|
||||
Reference in New Issue
Block a user