Package-level declarations

Types

Link copied to clipboard
open class TestBot(var component: Component = TestComponent(TestComponentConfiguration()), var configuration: TestBotConfiguration = TestBotConfiguration(), coroutineContext: CoroutineContext = configuration.coroutineContext) : JobBasedBot

用于测试的 Bot 实现。

Link copied to clipboard
@SerialName(value = "simbot.test")
data class TestBotConfiguration(var id: String = UUID.random().toString(), var name: String = id) : SerializableBotConfiguration

TestBot 的配置类。

Link copied to clipboard
open class TestBotManager(component: TestComponent, configuration: TestBotManagerConfiguration, val job: Job) : JobBasedBotManager

用于测试的 BotManager 实现。

Link copied to clipboard