Add incoming group message benchmark tests.

This commit is contained in:
Cody Henthorne
2026-02-13 14:58:22 -05:00
committed by Alex Hart
parent e67307a961
commit 08254edae6
16 changed files with 344 additions and 128 deletions

View File

@@ -16,6 +16,7 @@ class BenchmarkSetupActivity : BaseActivity() {
"cold-start" -> setupColdStart()
"conversation-open" -> setupConversationOpen()
"message-send" -> setupMessageSend()
"group-message-send" -> setupGroupMessageSend()
}
val textView: TextView = TextView(this).apply {
@@ -60,6 +61,11 @@ class BenchmarkSetupActivity : BaseActivity() {
private fun setupMessageSend() {
TestUsers.setupSelf()
TestUsers.setupBob()
TestUsers.setupTestClients(1)
}
private fun setupGroupMessageSend() {
TestUsers.setupSelf()
TestUsers.setupGroup()
}
}