SMBLibrary/SMBLibrary.Tests/Program.cs
2020-11-21 20:19:47 +02:00

24 lines
634 B
C#

using System;
using System.Collections.Generic;
using System.IO;
namespace SMBLibrary.Tests
{
class Program
{
static void Main(string[] args)
{
new NTLMAuthenticationTests().TestAll();
new NTLMSigningTests().TestAll();
new AesCcmTests().TestAll();
new SMB2EncryptionTests().TestAll();
new RC4Tests().TestAll();
new NetBiosTests().TestAll();
new RPCTests().TestAll();
new SMB2SigningTests().TestAll();
new NTDirectoryFileSystemTests().TestAll();
}
}
}