|
@@ -0,0 +1,23 @@
|
|
|
+package com.jiayue.ipfcst.console.service;
|
|
|
+
|
|
|
+import com.jiayue.ipfcst.BaseTest;
|
|
|
+import org.junit.Test;
|
|
|
+import org.springframework.beans.factory.annotation.Autowired;
|
|
|
+
|
|
|
+
|
|
|
+/**
|
|
|
+ * 超短期测试类
|
|
|
+ *
|
|
|
+ * @author xsl
|
|
|
+ * @version 3.0
|
|
|
+ */
|
|
|
+public class ForecastPowerUltraShortTermServiceTest extends BaseTest {
|
|
|
+
|
|
|
+ @Autowired
|
|
|
+ ForecastPowerUltraShortTermService forecastPowerUltraShortTermService;
|
|
|
+
|
|
|
+ @Test
|
|
|
+ public void executeForecast() {
|
|
|
+ forecastPowerUltraShortTermService.executeForecast();
|
|
|
+ }
|
|
|
+}
|