mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-12-13 16:47:36 +08:00
36 lines
601 B
Go
36 lines
601 B
Go
package data_conversion
|
|
|
|
import "testing"
|
|
|
|
// pass
|
|
func TestUserConversion(t *testing.T) {
|
|
UserConversion()
|
|
}
|
|
|
|
// pass
|
|
func TestFriendConversion(t *testing.T) {
|
|
FriendConversion()
|
|
}
|
|
|
|
// pass
|
|
func TestGroupConversion(t *testing.T) {
|
|
GroupConversion()
|
|
GroupMemberConversion()
|
|
}
|
|
|
|
// pass
|
|
func TestBlacksConversion(t *testing.T) {
|
|
BlacksConversion()
|
|
}
|
|
|
|
// pass
|
|
func TestRequestConversion(t *testing.T) {
|
|
RequestConversion()
|
|
}
|
|
|
|
// pass
|
|
func TestChatLogsConversion(t *testing.T) {
|
|
// If the printed result is too long, the console will not display it, but it can run normally
|
|
ChatLogsConversion()
|
|
}
|