敏捷工具
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
568 B

2 years ago
  1. package com.whn.hellospring;
  2. import com.whn.hellospring.service.MenuService;
  3. import lombok.extern.slf4j.Slf4j;
  4. import org.junit.jupiter.api.Test;
  5. import org.springframework.beans.factory.annotation.Autowired;
  6. import org.springframework.boot.test.context.SpringBootTest;
  7. @SpringBootTest
  8. @Slf4j
  9. public class MenuTest {
  10. @Autowired
  11. MenuService service;
  12. @Test
  13. public void getTypeList(){
  14. // List<MenuDTO> menuList = service.getMenuTypeList();
  15. // log.info("menuList{}:"+menuList);
  16. }
  17. @Test
  18. public void betweenDay(){
  19. }
  20. }