PageRenderTime 47ms CodeModel.GetById 21ms RepoModel.GetById 0ms app.codeStats 0ms

/Utilities/Tests/Program.cs

#
C# | 66 lines | 16 code | 7 blank | 43 comment | 0 complexity | 5eff82e88e11f3a8e7233df786f659b1 MD5 | raw file
Possible License(s): Apache-2.0
  1. using System;
  2. using Delta.Utilities.Networking;
  3. using Delta.Utilities.Helpers;
  4. using Delta.Utilities.Collections;
  5. using Delta.Utilities.Datatypes;
  6. using Delta.Utilities.Compression;
  7. namespace Delta.Utilities.Tests
  8. {
  9. /// <summary>
  10. /// Program
  11. /// </summary>
  12. class Program
  13. {
  14. /// <summary>
  15. /// Main
  16. /// </summary>
  17. static void Main(string[] args)
  18. {
  19. //SocketHelper.Tests.SendAndReceiveMessageData();
  20. //SocketHelper.Tests.StressTest(10000);
  21. //BaseServer.Tests.StartServerAndConnect();
  22. //Client.Tests.ConnectToServer();
  23. //Client.Tests.ConnectToServerShortDelay();
  24. //Client.Tests.ConnectToServerLongDelay();
  25. //Log.Tests.TestLogging();
  26. //new CacheTests().GetCachedData();
  27. //new CacheTests().ClearCachedData();
  28. //new CacheTests().MultipleInputKeys();
  29. //CacheTests.TestPerformance();
  30. //new ChangeableListTests().TestChangeableList();
  31. //new ChangeableListTests().TestCloningChangeableList();
  32. //new StackListTests().TestPush();
  33. //new StackListTests().TestPop();
  34. //new StackListTests().TestContains();
  35. //new StackListTests().TestIterating();
  36. //new TreeNodeCollectionTests().TestTreeNode();
  37. //new TreeNodeCollectionTests().TestTreeNodeCollection();
  38. //new UniqueListTests().TestConstructor();
  39. //new BoundingBox.Tests().ContainsPartially();
  40. //CryptographyTests.EncryptAndDecryptData();
  41. //CryptographyTests.TestEncryptDecryptPerformance();
  42. //CryptographyTests.EncryptAndDecryptTwoStrings();
  43. //RSATst.TestCrypto();
  44. CryptographyTests.TestRsaCrypto();
  45. //CryptographyTests.EncryptWithPublicRSAKey();
  46. //CryptographyTests.DecryptWithPrivateRSAKey();
  47. //new Zip.Tests().PackAndUnpackTextStream();
  48. //CompressionTests.ProfilePackAndUnpackTextMessage();
  49. //NetworkingTests.StartServerAndConnect();
  50. //NetworkingTests.StartEncryptedServerAndConnect();
  51. //NetworkingTests.SendBigCompressableMessages();
  52. //NetworkingTests.JustConnectAndDisconnectSockets();
  53. //NetworkingTests.ConnectToServer();
  54. //NetworkingTests.ConnectToServerShortDelay();
  55. //NetworkingTests.ConnectToServerLongDelay();
  56. //NetworkingTests.StressTest();
  57. }
  58. }
  59. }