123
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
package com.ruoyi.test.business;
|
||||
|
||||
import com.ruoyi.cai.trd.Agora;
|
||||
import lombok.extern.slf4j.Slf4j;
|
||||
import org.junit.jupiter.api.Test;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.boot.test.context.SpringBootTest;
|
||||
|
||||
@SpringBootTest
|
||||
@Slf4j
|
||||
public class AgoreTest {
|
||||
|
||||
@Autowired
|
||||
private Agora agora;
|
||||
|
||||
@Test
|
||||
public void closeChannel(){
|
||||
Long roomId = 1779785009948024833L;
|
||||
agora.closeChannel(roomId);
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user