Esempio n. 1
0
 public void IdentificationStatus_ShouldReturnFromProvider(IContactProfileProvider provider, ContactIdentificationLevel expected)
 {
   provider.Contact.Identifiers.IdentificationLevel.Returns(expected);
   var model = new ContactInformation(provider);
   model.IdentificationStatus.Should().Be(expected.ToString());
 }
Esempio n. 2
0
        public void IdentificationStatus_ShouldReturnFromProvider(IContactProfileProvider provider, ContactIdentificationLevel expected)
        {
            provider.Contact.Identifiers.IdentificationLevel.Returns(expected);
            var model = new ContactInformation(provider);

            model.IdentificationStatus.Should().Be(expected.ToString());
        }