Ejemplo n.º 1
0
 public void UserInfoDidChange()
 {
     try
     {
         Gigya.SocializeDelegate().UserInfoDidChange(null);
     }
     catch (Exception e)
     {
         Assert.Fail(e.Message);
     }
     Assert.Pass();
 }
Ejemplo n.º 2
0
 public void SetSocializeDelegate()
 {
     try
     {
         Gigya.SetSocializeDelegate(Gigya.SocializeDelegate());
     }
     catch (Exception e)
     {
         Assert.Fail(e.Message);
     }
     Assert.Pass();
 }
Ejemplo n.º 3
0
 public void UserDidLogout()
 {
     try
     {
         Gigya.SocializeDelegate().UserDidLogout();
     }
     catch (Exception e)
     {
         Assert.Fail(e.Message);
     }
     Assert.Pass();
 }