WangHan
2024-09-12 d5855a4926926698b740bc6c7ba489de47adb68b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
package tech.powerjob.remote.framework.engine;
 
import com.google.common.collect.Sets;
import org.junit.jupiter.api.Test;
import tech.powerjob.remote.framework.base.Address;
import tech.powerjob.remote.framework.engine.impl.PowerJobRemoteEngine;
 
import static org.junit.jupiter.api.Assertions.*;
 
/**
 * RemoteEngineTest
 *
 * @author tjq
 * @since 2022/12/31
 */
class RemoteEngineTest {
 
    @Test
    void start() {
 
        RemoteEngine remoteEngine = new PowerJobRemoteEngine();
 
        EngineConfig engineConfig = new EngineConfig();
        engineConfig.setType("TEST");
        engineConfig.setBindAddress(new Address().setHost("127.0.0.1").setPort(10086));
        remoteEngine.start(engineConfig);
    }
}