Exemplo n.º 1
0
 public void IsSystemAdminTest1()
 {
     ToSignIn(adminName, adminPass);
     try
     {
         userAdminHarmony.ValidateSystemAdmin();
     }
     catch (MarketException)
     {
         Assert.Fail();
     }
 }
Exemplo n.º 2
0
 public void IsSystemAdminTest3()
 {
     userAdminHarmony = new UserAdminHarmony(userServiceSession);
     try
     {
         userAdminHarmony.ValidateSystemAdmin();
         Assert.Fail();
     }
     catch (MarketException)
     {
     }
 }