public void SendTrackInformationIsBeingSent() { IPlatformProxy proxy = IntegrationProxy.GetInstance(new IntegrationProxyArgs.IntegrationProxyArgsBuilder().BuildDefault()).Proxy; var input = new OrderTrackingInformation() { Order_id = 12, Event = new OrderTrackingEvent() { Date = DateTime.Now, Status_id = 1 } }; Assert.True(proxy.SendTrackNotification(input).IsSuccess); }