aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.UnitTesting/SMO/SMO_TST.cs
blob: f258c4e1752aca4aee6b0409c0ff8f0230be08b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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();
        }
    }
}