public void TestWithOneArgument()
 {
     // Test with one argument
     string[] tempArgs = new string[] { "one" };
     WebSocketChatServer webSocketChatServer = new WebSocketChatServer(tempArgs);
     webSocketChatServer.StartWebSocketChatServer();
 }
 public void TestWithThreeArguments()
 {
     // Test with three argument
     string[] tempArgs = new string[] { "one", "two", "three" };
     WebSocketChatServer webSocketChatServer = new WebSocketChatServer(tempArgs);
     webSocketChatServer.StartWebSocketChatServer();
 }
 public void TestWithoutArgument()
 {
     // Test without arguments
     string[] tempArgs = new string[] { };
     this.webSocketChatServer = new WebSocketChatServer(tempArgs);
     this.webSocketChatServer.StartWebSocketChatServer();
 }