PEASS-ng/winPEAS/winPEASexe/Tests/SmokeTests.cs
makikvues 1af100d9c4 - updates tests project
- updated github action
2021-07-06 15:19:49 +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}");
}
}
}
}