[Spring][쇼핑몰 프로젝트][29] 상품 이미지 수정 - 3(서버처리)

https://kimvampa.tistory.com/237
This commit is contained in:
SeoJin Kim
2021-07-20 19:56:43 +09:00
parent b6fffe5fb1
commit 6cf31b67f2
14 changed files with 93 additions and 13 deletions

View File

@@ -19,7 +19,7 @@ public class AdminMapperTests {
private AdminMapper mapper;
/* 상품 등록 */
/*
@Test
public void bookEnrollTest() throws Exception{
@@ -43,7 +43,7 @@ public class AdminMapperTests {
System.out.println("After BookVO :" + book);
}
*/
/* 카테고리 리스트 */
/*
@@ -151,6 +151,16 @@ public class AdminMapperTests {
}
*/
/* 지정 상품 이미지 삭제 */
@Test
public void deleteImageAllTest() {
int bookId = 3124;
mapper.deleteImageAll(bookId);
}
}