mirror of
https://github.com/islehorse/HISP.git
synced 2025-04-06 05:05:40 +12:00
20 lines
No EOL
445 B
C#
20 lines
No EOL
445 B
C#
using HISP.Server;
|
|
using HISP.Tests.UnitTests;
|
|
using System;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace HISP.Tests
|
|
{
|
|
public static class Program
|
|
{
|
|
|
|
public static async Task Main(string[] args)
|
|
{
|
|
ServerStartTest.RunServerStartTest();
|
|
AuthenticationTest.RunAuthenticationTest();
|
|
await UserTest.RunUserTest();
|
|
PacketTest.RunPacketTest();
|
|
}
|
|
}
|
|
|
|
} |