public void EntityAttributeDictionary_GetRelatedEntityForeignProperties_NoAttributes_Test() { // Arrange // Act var actual = new EntityAttributeDictionary().GetRelatedEntityForeignProperties(typeof(Person)); // Assert Assert.IsFalse(actual.Any()); }
public void EntityAttributeDictionary_GetRelatedEntityMappingProperties_Null_Test() { // Arrange // Act var actual = new EntityAttributeDictionary().GetRelatedEntityMappingProperties(null); // Assert Assert.IsFalse(actual.Any()); }