16 lines
395 B
Java
16 lines
395 B
Java
package com.kimgo.wepush.service;
|
|
|
|
import org.junit.jupiter.api.Test;
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
import org.springframework.boot.test.context.SpringBootTest;
|
|
|
|
@SpringBootTest
|
|
class MonitorServiceTest {
|
|
@Autowired
|
|
private MonitorService monitorService;
|
|
|
|
@Test
|
|
void monitorOnlineDevices() {
|
|
monitorService.monitorOnlineDevices();
|
|
}
|
|
} |