public void CanCreateAppleInstallationWithToken()
        {
            const string AppleDeviceToken = "00fc13adff785122b4ad28809a3420982341241421348097878e577c991de8f0";

            var installation = new AppleInstallation(InstallationId, AppleDeviceToken);

            Assert.Equal(InstallationId, installation.InstallationId);
            Assert.Equal(AppleDeviceToken, installation.PushChannel);
            Assert.Equal(NotificationPlatform.Apns, installation.Platform);
        }
        public void CanCreateAppleInstallation()
        {
            var installation = new AppleInstallation();

            Assert.Equal(NotificationPlatform.Apns, installation.Platform);
        }