SMBLibrary: Moved tests to separate project

This commit is contained in:
Tal Aloni 2019-06-05 15:56:04 +03:00
parent bd68e82f00
commit 40d7aaa228
13 changed files with 889 additions and 7 deletions

View file

@ -0,0 +1,20 @@
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 RC4Tests().TestAll();
new NetBiosTests().TestAll();
new RPCTests().TestAll();
new SMB2SigningTests().TestAll();
}
}
}