mirror of
https://github.com/netchx/netch.git
synced 2026-03-20 18:19:44 +08:00
18 lines
406 B
C#
18 lines
406 B
C#
using System.Windows.Forms;
|
|
using Netch.Servers.VMess.Form;
|
|
using Netch.Utils;
|
|
|
|
namespace UnitTest
|
|
{
|
|
public class Tests : TestBase
|
|
{
|
|
public static void TestServerForm()
|
|
{
|
|
i18N.Load("zh-CN");
|
|
|
|
Application.EnableVisualStyles();
|
|
Application.SetCompatibleTextRenderingDefault(false);
|
|
Application.Run(new VMessForm());
|
|
}
|
|
}
|
|
} |