2024-05-13 15:14:54 +08:00
|
|
|
from tests.unit_test.user_test import user_test
|
|
|
|
from tests.unit_test.character_test import character_test
|
|
|
|
from tests.unit_test.chat_test import chat_test
|
2024-05-01 17:18:30 +08:00
|
|
|
import asyncio
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
2024-05-13 15:14:54 +08:00
|
|
|
user_test()
|
|
|
|
character_test()
|
|
|
|
chat_test()
|
2024-05-01 17:18:30 +08:00
|
|
|
print("全部测试成功")
|