public void CanCreateWindowsPhoneInstallationWithChannelUri()
        {
            const string ChannelUri = "https://notify.windows.net";

            var installation = new WindowsPhoneInstallation(InstallationId, ChannelUri);

            Assert.Equal(ChannelUri, installation.PushChannel);
            Assert.Equal(NotificationPlatform.Mpns, installation.Platform);
        }
        public void CanCreateWindowsPhoneInstallation()
        {
            var installation = new WindowsPhoneInstallation();

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