PEASS-ng/winPEAS/winPEASexe/winPEAS.Tests/SmokeTests.cs
2021-07-06 13:59:57 +02:00

25 lines
486 B
C#

using Microsoft.VisualStudio.TestTools.UnitTesting;
using System;
namespace winPEAS.Tests
{
[TestClass]
public class SmokeTests
{
[TestMethod]
public void ShouldRunWinPeass()
{
try
{
string[] args = new string[0];
Program.Main(args);
}
catch (Exception e)
{
Assert.Fail($"Exception thrown: {e.Message}");
}
}
}
}