|
@@ -0,0 +1,20 @@
|
|
|
|
|
+package com.tzld.piaoquan.sde;
|
|
|
|
|
+
|
|
|
|
|
+import com.tzld.piaoquan.sde.integration.ContentDeconstructionClusterClient;
|
|
|
|
|
+import com.tzld.piaoquan.sde.mapper.SdExecutionTaskMapper;
|
|
|
|
|
+import com.tzld.piaoquan.sde.model.entity.SdExecutionTask;
|
|
|
|
|
+import com.tzld.piaoquan.sde.service.ExecutionTaskService;
|
|
|
|
|
+import org.junit.jupiter.api.Test;
|
|
|
|
|
+import org.springframework.beans.factory.annotation.Autowired;
|
|
|
|
|
+
|
|
|
|
|
+public class ExecutionTaskServiceTest extends BaseTest {
|
|
|
|
|
+
|
|
|
|
|
+ @Autowired
|
|
|
|
|
+ private ExecutionTaskService executionTaskService;
|
|
|
|
|
+
|
|
|
|
|
+ @Test
|
|
|
|
|
+ public void testDeconstruction() {
|
|
|
|
|
+ executionTaskService.yesterdayTopReturnVideoExecutionTaskCreateHandler();
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+}
|