public void GcmNotification_Priority_Should_Serialize_As_String_High() { var n = new GcmNotification(); n.Priority = GcmNotificationPriority.High; var str = n.ToString(); Assert.IsTrue(str.Contains("high")); }
public void GcmNotification_Priority_Should_Serialize_As_String_Normal() { var n = new GcmNotification(); n.Priority = GcmNotificationPriority.Normal; var str = n.ToString(); Assert.IsTrue(str.Contains("normal")); }
void gcmPush_OnNotificationFailed(GcmNotification notification, AggregateException exception) { ContadorNoEnviados++; StringBuilder sb = new StringBuilder(); sb.AppendLine("================================================================================"); sb.AppendLine("Notificacion: " + notification.ToString()); sb.AppendLine("Error: " + exception.Message); EscribirEnLog(sb.ToString()); }