EricGao888 commented on code in PR #13703: URL: https://github.com/apache/dolphinscheduler/pull/13703#discussion_r1300828252
########## dolphinscheduler-api/src/test/java/org/apache/dolphinscheduler/api/controller/DynamicTaskTypeControllerTest.java: ########## @@ -0,0 +1,71 @@ +package org.apache.dolphinscheduler.api.controller; + + +import org.apache.dolphinscheduler.api.enums.Status; +import org.apache.dolphinscheduler.api.utils.Result; +import org.apache.dolphinscheduler.common.utils.JSONUtils; +import org.junit.jupiter.api.*; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; +import org.springframework.http.MediaType; +import org.springframework.test.web.servlet.MvcResult; + +import java.util.HashMap; +import java.util.List; + +import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.get; +import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.content; +import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status; + +/** + * Dynamic Task controller test Review Comment: This comment is unnecessary. Everybody knows it is test for dynamic controller. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
