Program.cs 542 B

12345678910111213141516171819202122
  1. using System;
  2. using System.Collections.Generic;
  3. using System.IO;
  4. namespace SMBLibrary.Tests
  5. {
  6. class Program
  7. {
  8. static void Main(string[] args)
  9. {
  10. new NTLMAuthenticationTests().TestAll();
  11. new NTLMSigningTests().TestAll();
  12. new RC4Tests().TestAll();
  13. new NetBiosTests().TestAll();
  14. new RPCTests().TestAll();
  15. new SMB2SigningTests().TestAll();
  16. new NTDirectoryFileSystemTests().TestAll();
  17. }
  18. }
  19. }