mirror of
https://github.com/TalAloni/SMBLibrary.git
synced 2025-07-10 03:13:18 +02:00
SMBLibrary: Moved tests to separate project
This commit is contained in:
parent
bd68e82f00
commit
40d7aaa228
13 changed files with 889 additions and 7 deletions
20
SMBLibrary.Tests/Program.cs
Normal file
20
SMBLibrary.Tests/Program.cs
Normal 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();
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue