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