EricGao888 commented on code in PR #13703:
URL:
https://github.com/apache/dolphinscheduler/pull/13703#discussion_r1300828430
##########
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
+ */
+class DynamicTaskTypeControllerTest extends AbstractControllerTest {
+ private static final Logger logger =
LoggerFactory.getLogger(DataSourceControllerTest.class);
+
+ @BeforeEach
+ public void initSetUp() {
+ setUp();
+ }
+
+ @AfterEach
+ public void afterEach() throws Exception {
+ after();
+ }
+
+ @Disabled("Query TaskCategories")
Review Comment:
Why disabled?
--
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]