增加定时消息表CMINMSGS已经处理数据 转 历史表操作
This commit is contained in:
@@ -18,6 +18,6 @@ public class RedisServiceTest {
|
||||
@Test
|
||||
public void removeFlightInfo()
|
||||
{
|
||||
redisService.del(Arrays.asList("FlightInfo:"));
|
||||
redisService.del(Arrays.asList("flightInfo:"));
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,21 @@
|
||||
package com.gzzn.omms.msgexchangeapi.scheduled;
|
||||
|
||||
import org.junit.Test;
|
||||
import org.junit.runner.RunWith;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.boot.test.context.SpringBootTest;
|
||||
import org.springframework.test.context.junit4.SpringRunner;
|
||||
|
||||
@RunWith(SpringRunner.class)
|
||||
@SpringBootTest
|
||||
public class CminmsgsHisScheduledTest {
|
||||
|
||||
@Autowired
|
||||
CminmsgsHisScheduled cminmsgsHisScheduled;
|
||||
|
||||
@Test
|
||||
public void testRun()
|
||||
{
|
||||
cminmsgsHisScheduled.scheduled();
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
package com.gzzn.omms.msgexchangeapi.service;
|
||||
|
||||
public class CmoutmsgServiceImplTest {
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user