public void Setup()
 {
     _visibleTemplate = new PushNotificationTemplate("Visible Template", "DefaultTitle", "DefaultBody", new List <string>
     {
         "PropertyOne",
         "PropertyTwo"
     });
 }
 public override void SetUp()
 {
     base.SetUp();
     _userId = Guid.NewGuid().ToString();
     _pushNotificationTemplate = new PushNotificationTemplate("MyTemplate", "My Title", "My Body", new List <string>
     {
         "PropertyOne",
         "PropertyTwo"
     });
     _notification = new PushNotificationBuilder(_pushNotificationTemplate)
                     .WithDataProperty("PropertyOne", "ValueOne")
                     .WithDataProperty("PropertyTwo", "ValueTwo")
                     .Create();
 }