mirror of
https://github.com/islehorse/HISP.git
synced 2025-04-06 05:05:40 +12:00
40 lines
1.1 KiB
C#
40 lines
1.1 KiB
C#
using HISP.Server;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace HISP.Tests.UnitTests
|
|
{
|
|
public class ServerStartTest
|
|
{
|
|
|
|
public static void OnShutdown()
|
|
{
|
|
ResultLogger.LogTestStatus(false, "START_SERVER", "OnShutdown called");
|
|
}
|
|
public static void LogStdout(bool error, string type, string text)
|
|
{
|
|
if (type == "CRASH")
|
|
ResultLogger.LogTestStatus(false, "START_SERVER", text);
|
|
}
|
|
|
|
public static bool RunServerStartTest()
|
|
{
|
|
try
|
|
{
|
|
Logger.SetCallback(LogStdout);
|
|
Entry.SetShutdownCallback(OnShutdown);
|
|
Entry.Start();
|
|
ResultLogger.LogTestStatus(true, "START_SERVER_TEST", "Success.");
|
|
return true;
|
|
}
|
|
catch (Exception e)
|
|
{
|
|
ResultLogger.LogTestStatus(false, "START_SERVER_TEST", e.Message);
|
|
return false;
|
|
}
|
|
}
|
|
}
|
|
}
|