aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.UnitTesting/SMO
diff options
context:
space:
mode:
authorRoy Ben Shabat <Roy.mail.net@gmail.com>2019-05-21 08:37:45 +0300
committerRoy Ben Shabat <Roy.mail.net@gmail.com>2019-05-21 08:37:45 +0300
commit8b650b590224b4c922aab831307c7bcb29fa9fdc (patch)
treed024fe54a40afe638a3a530014198cc79d277d51 /Software/Visual_Studio/Tango.UnitTesting/SMO
parent3e64075a702ef7564e30e8ae12052c213dc274eb (diff)
downloadTango-8b650b590224b4c922aab831307c7bcb29fa9fdc.tar.gz
Tango-8b650b590224b4c922aab831307c7bcb29fa9fdc.zip
Fixed issue with PPC update TEMP_USER not having VIEW_DEFINITION permissions.
Diffstat (limited to 'Software/Visual_Studio/Tango.UnitTesting/SMO')
-rw-r--r--Software/Visual_Studio/Tango.UnitTesting/SMO/SMO_TST.cs22
1 files changed, 22 insertions, 0 deletions
diff --git a/Software/Visual_Studio/Tango.UnitTesting/SMO/SMO_TST.cs b/Software/Visual_Studio/Tango.UnitTesting/SMO/SMO_TST.cs
new file mode 100644
index 000000000..f258c4e17
--- /dev/null
+++ b/Software/Visual_Studio/Tango.UnitTesting/SMO/SMO_TST.cs
@@ -0,0 +1,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();
+ }
+ }
+}