using Microsoft.VisualStudio.TestTools.UnitTesting; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Tango.Web.SMO; namespace Tango.UnitTesting.SMO { [TestClass] [TestCategory("SMO")] public class SMO_TST { [TestMethod] public void Create_Temp_User_And_Grant_Read_And_View_Defaults() { SmoManager smo = new SmoManager(); var user = smo.CreateRandomLoginAndUser(); } } }