This commit is contained in:
77
2024-04-15 18:33:40 +08:00
parent 4edcdffd7a
commit 3b297775d5
3 changed files with 27 additions and 1 deletions

View File

@@ -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);
}
}