Exemplo n.º 1
0
		public static void FinalLightTunnelTest()
		{
			Console.Write ("Testing Light Tunnel ...");

			var test = new Test_FinalLightTunnel ();
			
            test.ManyConnections ();
			test.PingPong ();
			test.RecursionCall ();
			test.CuteDDDOS ();
            test.ClientDisconnectHandling();
            test.ServerDisconnectHandling();
           
			Console.WriteLine("Succesfully");
		}
Exemplo n.º 2
0
        public static void Main(string[] args)
        {
            var test = new Test_FinalLightTunnel();
            
            try {
                SendReceiveTest();
                De_SerializationTest();
                CordDispatcherTest();
                FinalLightTunnelTest();
            } catch (Exception ex) {
                Console.WriteLine("Tests failed: " + ex.ToString());
            }

            Console.WriteLine("PAK2C..");
            Console.ReadKey();
        }