PEASS-ng/winPEAS/winPEASexe/winPEAS.Tests/SmokeTests.cs
makikvues d8cc0f31d3 - added github actions for winpeas
- updated Beaprint - titles
- added test solution
2021-07-06 13:47:50 +02:00

24 lines
485 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}");
}
}
}
}